Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbhid/mouse/mousedev.c

    r1dc4a5e r1875a0c  
    5757
    5858// FIXME: remove this header
    59 #include <abi/ipc/methods.h>
     59#include <kernel/ipc/ipc_methods.h>
    6060
    6161#define NAME "mouse"
     
    7474const char *HID_MOUSE_FUN_NAME = "mouse";
    7575const char *HID_MOUSE_WHEEL_FUN_NAME = "mouse-wheel";
    76 const char *HID_MOUSE_CATEGORY = "mouse";
    77 const char *HID_MOUSE_WHEEL_CATEGORY = "keyboard";
     76const char *HID_MOUSE_CLASS_NAME = "mouse";
     77const char *HID_MOUSE_WHEEL_CLASS_NAME = "keyboard";
    7878
    7979/** Default idle rate for mouses. */
     
    325325        assert(mouse != NULL);
    326326       
    327         /* Create the exposed function. */
     327        /* Create the function exposed under /dev/devices. */
    328328        usb_log_debug("Creating DDF function %s...\n", HID_MOUSE_FUN_NAME);
    329329        ddf_fun_t *fun = ddf_fun_create(hid_dev->usb_dev->ddf_dev, fun_exposed,
     
    345345        }
    346346       
    347         usb_log_debug("Adding DDF function to category %s...\n",
    348             HID_MOUSE_CATEGORY);
    349         rc = ddf_fun_add_to_category(fun, HID_MOUSE_CATEGORY);
     347        usb_log_debug("Adding DDF function to class %s...\n",
     348            HID_MOUSE_CLASS_NAME);
     349        rc = ddf_fun_add_to_class(fun, HID_MOUSE_CLASS_NAME);
    350350        if (rc != EOK) {
    351351                usb_log_error(
    352                     "Could not add DDF function to category %s: %s.\n",
    353                     HID_MOUSE_CATEGORY, str_error(rc));
     352                    "Could not add DDF function to class %s: %s.\n",
     353                    HID_MOUSE_CLASS_NAME, str_error(rc));
    354354                ddf_fun_destroy(fun);
    355355                return rc;
     
    383383        }
    384384       
    385         usb_log_debug("Adding DDF function to category %s...\n",
    386             HID_MOUSE_WHEEL_CATEGORY);
    387         rc = ddf_fun_add_to_category(fun, HID_MOUSE_WHEEL_CATEGORY);
     385        usb_log_debug("Adding DDF function to class %s...\n",
     386            HID_MOUSE_WHEEL_CLASS_NAME);
     387        rc = ddf_fun_add_to_class(fun, HID_MOUSE_WHEEL_CLASS_NAME);
    388388        if (rc != EOK) {
    389389                usb_log_error(
    390                     "Could not add DDF function to category %s: %s.\n",
    391                     HID_MOUSE_WHEEL_CATEGORY, str_error(rc));
     390                    "Could not add DDF function to class %s: %s.\n",
     391                    HID_MOUSE_WHEEL_CLASS_NAME, str_error(rc));
    392392                ddf_fun_destroy(fun);
    393393                return rc;
Note: See TracChangeset for help on using the changeset viewer.