Changeset 1181249 in mainline
- Timestamp:
- 2011-05-06T08:34:20Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 166c4752
- Parents:
- 10849ffc (diff), 310c4df (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace/drv/usbhid
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/kbd/kbddev.c
r10849ffc r1181249 1046 1046 free((*kbd_dev)->led_data); 1047 1047 } 1048 if ((*kbd_dev)->output_buffer != NULL) {1049 free((*kbd_dev)->output_buffer);1050 }1051 1048 if ((*kbd_dev)->led_path != NULL) { 1052 1049 usb_hid_report_path_free((*kbd_dev)->led_path); -
uspace/drv/usbhid/mouse/mousedev.c
r10849ffc r1181249 268 268 USB_HID_REPORT_TYPE_INPUT); 269 269 270 if(field != NULL) {270 while (field != NULL) { 271 271 usb_log_debug(NAME " VALUE(%X) USAGE(%X)\n", field->value, 272 272 field->usage);
Note:
See TracChangeset
for help on using the changeset viewer.