Changeset 5f88293 in mainline for uspace/srv/hid/console/console.c
- Timestamp:
- 2011-06-12T15:44:38Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60e5a856
- Parents:
- af897ff0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/console/console.c
raf897ff0 r5f88293 34 34 35 35 #include <libc.h> 36 #include <ipc/ kbd.h>36 #include <ipc/input.h> 37 37 #include <io/keycode.h> 38 38 #include <ipc/mouse.h> … … 157 157 static void kbd_yield(void) 158 158 { 159 async_obsolete_req_0_0(kbd_phone, KBD_YIELD);159 async_obsolete_req_0_0(kbd_phone, INPUT_YIELD); 160 160 } 161 161 162 162 static void kbd_reclaim(void) 163 163 { 164 async_obsolete_req_0_0(kbd_phone, KBD_RECLAIM);164 async_obsolete_req_0_0(kbd_phone, INPUT_RECLAIM); 165 165 } 166 166 … … 444 444 445 445 switch (IPC_GET_IMETHOD(call)) { 446 case KBD_EVENT:446 case INPUT_EVENT: 447 447 /* Got event from keyboard driver. */ 448 448 retval = 0;
Note:
See TracChangeset
for help on using the changeset viewer.