Changeset b6a088f in mainline for uspace/srv/hid/input/ctl
- Timestamp:
- 2012-08-16T19:14:03Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c9d011e4
- Parents:
- 9f5cf68
- Location:
- uspace/srv/hid/input/ctl
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/ctl/apple.c
r9f5cf68 rb6a088f 36 36 */ 37 37 38 #include <kbd.h>39 38 #include <io/console.h> 40 39 #include <io/keycode.h> 41 #include <kbd_ctl.h> 42 #include <kbd_port.h> 40 #include "../kbd.h" 41 #include "../kbd_ctl.h" 42 #include "../kbd_port.h" 43 43 44 44 static void apple_ctl_parse(sysarg_t); -
uspace/srv/hid/input/ctl/gxe_fb.c
r9f5cf68 rb6a088f 33 33 /** 34 34 * @file 35 * @brief GXEmul framebuffer-mode keyboard controller driver.35 * @brief GXEmul framebuffer-mode keyboard controller driver. 36 36 */ 37 37 38 #include <kbd.h>39 38 #include <io/console.h> 40 39 #include <io/keycode.h> 41 #include <kbd_ctl.h> 42 #include <kbd_port.h> 43 #include <gsp.h> 44 #include <stroke.h> 40 #include "../stroke.h" 41 #include "../gsp.h" 42 #include "../kbd.h" 43 #include "../kbd_port.h" 44 #include "../kbd_ctl.h" 45 45 46 46 static void gxe_fb_ctl_parse(sysarg_t); -
uspace/srv/hid/input/ctl/kbdev.c
r9f5cf68 rb6a088f 40 40 #include <errno.h> 41 41 #include <fcntl.h> 42 #include <gsp.h>43 42 #include <io/console.h> 44 43 #include <io/keycode.h> 45 44 #include <ipc/kbdev.h> 46 #include <input.h>47 #include <kbd.h>48 #include <kbd_ctl.h>49 #include <kbd_port.h>50 45 #include <loc.h> 51 46 #include <stdlib.h> 52 47 #include <vfs/vfs_sess.h> 53 48 #include <sys/typefmt.h> 49 #include "../gsp.h" 50 #include "../input.h" 51 #include "../kbd.h" 52 #include "../kbd_ctl.h" 53 #include "../kbd_port.h" 54 54 55 55 static int kbdev_ctl_init(kbd_dev_t *); -
uspace/srv/hid/input/ctl/pc.c
r9f5cf68 rb6a088f 36 36 */ 37 37 38 #include <kbd.h>39 38 #include <io/console.h> 40 39 #include <io/keycode.h> 41 #include <kbd_ctl.h> 42 #include <kbd_port.h> 43 #include <gsp.h> 40 #include "../gsp.h" 41 #include "../kbd.h" 42 #include "../kbd_port.h" 43 #include "../kbd_ctl.h" 44 44 45 45 static void pc_ctl_parse(sysarg_t); -
uspace/srv/hid/input/ctl/stty.c
r9f5cf68 rb6a088f 38 38 */ 39 39 40 #include <kbd.h>41 40 #include <io/keycode.h> 42 #include <kbd_ctl.h> 43 #include <kbd_port.h> 44 #include <gsp.h> 45 #include <stroke.h> 41 #include "../stroke.h" 42 #include "../gsp.h" 43 #include "../kbd.h" 44 #include "../kbd_port.h" 45 #include "../kbd_ctl.h" 46 46 47 47 static void stty_ctl_parse(sysarg_t); -
uspace/srv/hid/input/ctl/sun.c
r9f5cf68 rb6a088f 37 37 */ 38 38 39 #include <kbd.h>40 39 #include <io/console.h> 41 40 #include <io/keycode.h> 42 #include <kbd_ctl.h> 43 #include <kbd_port.h> 41 #include "../kbd.h" 42 #include "../kbd_port.h" 43 #include "../kbd_ctl.h" 44 44 45 45 static void sun_ctl_parse(sysarg_t);
Note:
See TracChangeset
for help on using the changeset viewer.
