Changeset 9445aad in mainline for uspace/drv/usbhid/kbddev.c
- Timestamp:
- 2011-03-03T23:25:34Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3c775adb, 9a422574
- Parents:
- bdc8ab1 (diff), 8f74140c (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/kbddev.c
rbdc8ab1 r9445aad 289 289 290 290 usb_log_debug2("Sending key %d to the console\n", ev.key); 291 assert(kbd_dev->console_phone != -1); 291 if (kbd_dev->console_phone < 0) { 292 usb_log_warning( 293 "Connection to console not ready, key discarded.\n"); 294 return; 295 } 292 296 293 297 async_msg_4(kbd_dev->console_phone, KBD_EVENT, ev.type, ev.key,
Note:
See TracChangeset
for help on using the changeset viewer.