Changeset be01eb3 in mainline
- Timestamp:
- 2018-02-03T10:46:34Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98b1d30
- Parents:
- aa148b3
- Location:
- uspace/drv/hid/usbhid
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/usbhid/main.c
raa148b3 rbe01eb3 104 104 } 105 105 106 static int join_and_clean(usb_device_t *dev)106 static errno_t join_and_clean(usb_device_t *dev) 107 107 { 108 108 assert(dev); -
uspace/drv/hid/usbhid/usbhid.c
raa148b3 rbe01eb3 348 348 349 349 /* Parse the input report */ 350 const int rc = usb_hid_parse_report(350 const errno_t rc = usb_hid_parse_report( 351 351 &hid_dev->report, buffer, buffer_size, &hid_dev->report_id); 352 352 if (rc != EOK) { … … 367 367 } 368 368 369 static bool usb_hid_polling_error_callback(usb_device_t *dev, int err_code, void *arg)369 static bool usb_hid_polling_error_callback(usb_device_t *dev, errno_t err_code, void *arg) 370 370 { 371 371 assert(dev);
Note:
See TracChangeset
for help on using the changeset viewer.