Changes in uspace/lib/usbhid/src/hidpath.c [5a6cc679:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhid/src/hidpath.c
r5a6cc679 rb7fd2a0 173 173 void usb_hid_print_usage_path(usb_hid_report_path_t *path) 174 174 { 175 usb_log_debug("USAGE_PATH FOR RId(%d): ", path->report_id);176 usb_log_debug("\tLENGTH: %d ", path->depth);175 usb_log_debug("USAGE_PATH FOR RId(%d):\n", path->report_id); 176 usb_log_debug("\tLENGTH: %d\n", path->depth); 177 177 178 178 list_foreach(path->items, rpath_items_link, 179 179 usb_hid_report_usage_path_t, path_item) { 180 180 181 usb_log_debug("\tUSAGE_PAGE: %X ", path_item->usage_page);182 usb_log_debug("\tUSAGE: %X ", path_item->usage);183 usb_log_debug("\tFLAGS: %d ", path_item->flags);181 usb_log_debug("\tUSAGE_PAGE: %X\n", path_item->usage_page); 182 usb_log_debug("\tUSAGE: %X\n", path_item->usage); 183 usb_log_debug("\tFLAGS: %d\n", path_item->flags); 184 184 } 185 185 }
Note:
See TracChangeset
for help on using the changeset viewer.