Changes in uspace/drv/bus/usb/usbhid/subdrivers.c [93d2684:5203e256] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhid/subdrivers.c
r93d2684 r5203e256 42 42 #include "generic/hiddev.h" 43 43 44 static constusb_hid_subdriver_usage_t path_kbd[] = {45 {USB_HIDUT_PAGE_GENERIC_DESKTOP, 46 USB_HIDUT_USAGE_GENERIC_DESKTOP_KEYBOARD}, 44 static usb_hid_subdriver_usage_t path_kbd[] = { 45 {USB_HIDUT_PAGE_GENERIC_DESKTOP, 46 USB_HIDUT_USAGE_GENERIC_DESKTOP_KEYBOARD}, 47 47 {0, 0} 48 48 }; 49 49 50 static constusb_hid_subdriver_usage_t path_mouse[] = {50 static usb_hid_subdriver_usage_t path_mouse[] = { 51 51 {USB_HIDUT_PAGE_GENERIC_DESKTOP, USB_HIDUT_USAGE_GENERIC_DESKTOP_MOUSE}, 52 52 {0, 0} 53 53 }; 54 54 55 static constusb_hid_subdriver_usage_t multim_key_path[] = {55 static usb_hid_subdriver_usage_t multim_key_path[] = { 56 56 {USB_HIDUT_PAGE_CONSUMER, USB_HIDUT_USAGE_CONSUMER_CONSUMER_CONTROL}, 57 57 {0, 0} … … 71 71 .poll_end = NULL 72 72 }, 73 73 74 }, 74 75 { … … 101 102 }; 102 103 103 const int USB_HID_MAX_SUBDRIVERS =104 sizeof(usb_hid_subdrivers) / sizeof(usb_hid_subdrivers[0]);105 106 104 /** 107 105 * @}
Note:
See TracChangeset
for help on using the changeset viewer.