Changes in uspace/drv/usbhid/main.c [1c6c4092:48d2765] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/main.c
r1c6c4092 r48d2765 47 47 48 48 /*----------------------------------------------------------------------------*/ 49 49 /** 50 * Callback for passing a new device to the driver. 51 * 52 * @note Currently, only boot-protocol keyboards are supported by this driver. 53 * 54 * @param dev Structure representing the new device. 55 * 56 * @retval EOK if successful. 57 * @retval EREFUSED if the device is not supported. 58 */ 50 59 static int usbhid_add_device(ddf_dev_t *dev) 51 60 { … … 80 89 int main(int argc, char *argv[]) 81 90 { 82 usb_log_enable(USB_LOG_LEVEL_ INFO, NAME);91 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME); 83 92 return ddf_driver_main(&kbd_driver); 84 93 }
Note:
See TracChangeset
for help on using the changeset viewer.