Changeset a635535 in mainline for uspace/drv
- Timestamp:
- 2023-11-30T20:29:05Z (23 months ago)
- Branches:
- master, topic/simplify-dev-export
- Children:
- 1be9ee0
- Parents:
- cad7b7e
- Location:
- uspace/drv/hid
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/hid/adb-kbd/adb-kbd.c
rcad7b7e ra635535 34 34 #include <ddf/log.h> 35 35 #include <errno.h> 36 #include <io/ console.h>36 #include <io/kbd_event.h> 37 37 #include <ipc/adb.h> 38 38 #include <ipc/kbdev.h> -
uspace/drv/hid/adb-kbd/ctl.c
rcad7b7e ra635535 33 33 34 34 #include <errno.h> 35 #include <io/ console.h>35 #include <io/kbd_event.h> 36 36 #include <io/keycode.h> 37 37 -
uspace/drv/hid/atkbd/atkbd.c
rcad7b7e ra635535 38 38 #include <errno.h> 39 39 #include <ddf/log.h> 40 #include <io/kbd_event.h> 40 41 #include <io/keycode.h> 41 42 #include <io/chardev.h> 42 #include <io/console.h>43 43 #include <ipc/kbdev.h> 44 44 #include <abi/ipc/methods.h> -
uspace/drv/hid/ps2mouse/ps2mouse.c
rcad7b7e ra635535 40 40 #include <io/keycode.h> 41 41 #include <io/chardev.h> 42 #include <io/console.h>43 42 #include <ipc/mouseev.h> 44 43 #include <abi/ipc/methods.h> -
uspace/drv/hid/usbhid/kbd/kbddev.c
rcad7b7e ra635535 41 41 42 42 #include <io/keycode.h> 43 #include <io/ console.h>43 #include <io/kbd_event.h> 44 44 #include <abi/ipc/methods.h> 45 45 #include <ipc/kbdev.h> -
uspace/drv/hid/usbhid/kbd/kbdrepeat.c
rcad7b7e ra635535 36 36 37 37 #include <fibril_synch.h> 38 #include <io/kbd_event.h> 38 39 #include <io/keycode.h> 39 #include <io/console.h>40 40 #include <errno.h> 41 41 -
uspace/drv/hid/usbhid/mouse/mousedev.c
rcad7b7e ra635535 46 46 #include <str_error.h> 47 47 #include <ipc/mouseev.h> 48 #include <io/console.h>49 48 50 49 #include <ipc/kbdev.h> -
uspace/drv/hid/usbhid/multimedia/multimedia.c
rcad7b7e ra635535 51 51 52 52 #include <ipc/kbdev.h> 53 #include <io/ console.h>53 #include <io/kbd_event.h> 54 54 55 55 #define NAME "multimedia-keys" -
uspace/drv/hid/xtkbd/xtkbd.c
rcad7b7e ra635535 39 39 #include <io/keycode.h> 40 40 #include <io/chardev.h> 41 #include <io/ console.h>41 #include <io/kbd_event.h> 42 42 #include <ipc/kbdev.h> 43 43 #include <abi/ipc/methods.h>
Note:
See TracChangeset
for help on using the changeset viewer.