Changeset 5f88293 in mainline for uspace/drv
- Timestamp:
- 2011-06-12T15:44:38Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60e5a856
- Parents:
- af897ff0
- Location:
- uspace/drv/usbhid
- Files:
-
- 3 edited
-
kbd/kbddev.c (modified) (2 diffs)
-
mouse/mousedev.c (modified) (2 diffs)
-
multimedia/multimedia.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhid/kbd/kbddev.c
raf897ff0 r5f88293 41 41 #include <io/keycode.h> 42 42 #include <io/console.h> 43 #include <ipc/kbd .h>43 #include <ipc/kbdev.h> 44 44 #include <async.h> 45 45 #include <async_obsolete.h> … … 303 303 } 304 304 305 async_obsolete_msg_2(kbd_dev->console_phone, KBD _EVENT, type, key);305 async_obsolete_msg_2(kbd_dev->console_phone, KBDEV_EVENT, type, key); 306 306 } 307 307 -
uspace/drv/usbhid/mouse/mousedev.c
raf897ff0 r5f88293 47 47 #include <io/console.h> 48 48 49 #include <ipc/kbd .h>49 #include <ipc/kbdev.h> 50 50 #include <io/keycode.h> 51 51 … … 219 219 for (i = 0; i < count * 3; ++i) { 220 220 usb_log_debug2("Sending key %d to the console\n", ev.key); 221 async_obsolete_msg_4(mouse_dev->wheel_phone, KBD _EVENT, ev.type,221 async_obsolete_msg_4(mouse_dev->wheel_phone, KBDEV_EVENT, ev.type, 222 222 ev.key, ev.mods, ev.c); 223 223 // send key release right away 224 async_obsolete_msg_4(mouse_dev->wheel_phone, KBD _EVENT, KEY_RELEASE,224 async_obsolete_msg_4(mouse_dev->wheel_phone, KBDEV_EVENT, KEY_RELEASE, 225 225 ev.key, ev.mods, ev.c); 226 226 } -
uspace/drv/usbhid/multimedia/multimedia.c
raf897ff0 r5f88293 50 50 #include <str_error.h> 51 51 52 #include <ipc/kbd .h>52 #include <ipc/kbdev.h> 53 53 #include <io/console.h> 54 54 … … 162 162 } 163 163 164 async_obsolete_msg_4(multim_dev->console_phone, KBD _EVENT, ev.type, ev.key,164 async_obsolete_msg_4(multim_dev->console_phone, KBDEV_EVENT, ev.type, ev.key, 165 165 ev.mods, ev.c); 166 166 }
Note:
See TracChangeset
for help on using the changeset viewer.
