Changeset 7a2f8ea0 in mainline
- Timestamp:
- 2011-03-02T14:20:12Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 30db06c
- Parents:
- e135751
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/kbddev.c
re135751 r7a2f8ea0 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.