Changes in uspace/lib/usbhid/src/hidparser.c [38d150e:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/src/hidparser.c
r38d150e rb7fd2a0 127 127 * @return Error code. 128 128 */ 129 int usb_hid_parse_report(const usb_hid_report_t *report, const uint8_t *data,129 errno_t usb_hid_parse_report(const usb_hid_report_t *report, const uint8_t *data, 130 130 size_t size, uint8_t *report_id) 131 131 { … … 334 334 * @return Error code 335 335 */ 336 int usb_hid_report_output_translate(usb_hid_report_t *report,336 errno_t usb_hid_report_output_translate(usb_hid_report_t *report, 337 337 uint8_t report_id, uint8_t *buffer, size_t size) 338 338 { … … 531 531 532 532 if (usb_hid_report_compare_usage_path( 533 field->collection_path, path, flags) == EOK) {533 field->collection_path, path, flags) == 0) { 534 534 usb_hid_report_remove_last_item( 535 535 field->collection_path);
Note:
See TracChangeset
for help on using the changeset viewer.