Changes in uspace/drv/usbhid/main.c [48d2765:1c6c4092] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/main.c
r48d2765 r1c6c4092 47 47 48 48 /*----------------------------------------------------------------------------*/ 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 */ 49 59 50 static int usbhid_add_device(ddf_dev_t *dev) 60 51 { … … 89 80 int main(int argc, char *argv[]) 90 81 { 91 usb_log_enable(USB_LOG_LEVEL_ DEBUG, NAME);82 usb_log_enable(USB_LOG_LEVEL_INFO, NAME); 92 83 return ddf_driver_main(&kbd_driver); 93 84 }
Note:
See TracChangeset
for help on using the changeset viewer.