Changeset b6a088f in mainline for uspace/srv/hid/input/port
- Timestamp:
- 2012-08-16T19:14:03Z (13 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/port
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/port/adb.c
r9f5cf68 rb6a088f 37 37 #include <ipc/adb.h> 38 38 #include <async.h> 39 #include <input.h>40 #include <kbd_port.h>41 #include <kbd.h>42 39 #include <vfs/vfs.h> 43 40 #include <fcntl.h> 44 41 #include <errno.h> 45 42 #include <loc.h> 43 #include "../input.h" 44 #include "../kbd_port.h" 45 #include "../kbd.h" 46 46 47 47 static void kbd_port_events(ipc_callid_t iid, ipc_call_t *icall, void *arg); -
uspace/srv/hid/input/port/adb_mouse.c
r9f5cf68 rb6a088f 37 37 #include <ipc/adb.h> 38 38 #include <async.h> 39 #include <input.h>40 #include <mouse_port.h>41 #include <mouse.h>42 39 #include <errno.h> 43 40 #include <loc.h> 44 41 #include <stdio.h> 42 #include "../mouse.h" 43 #include "../mouse_port.h" 44 #include "../input.h" 45 45 46 46 static mouse_dev_t *mouse_dev; -
uspace/srv/hid/input/port/chardev.c
r9f5cf68 rb6a088f 37 37 #include <ipc/char.h> 38 38 #include <async.h> 39 #include <input.h>40 #include <kbd_port.h>41 #include <kbd.h>42 39 #include <loc.h> 43 40 #include <errno.h> 44 41 #include <stdio.h> 42 #include "../input.h" 43 #include "../kbd_port.h" 44 #include "../kbd.h" 45 45 46 46 static void kbd_port_events(ipc_callid_t iid, ipc_call_t *icall, void *arg); -
uspace/srv/hid/input/port/gxemul.c
r9f5cf68 rb6a088f 31 31 * @{ 32 32 * @ingroup kbd 33 */ 33 */ 34 34 /** @file 35 * @brief GXEmul keyboard port driver.35 * @brief GXEmul keyboard port driver. 36 36 */ 37 37 38 38 #include <async.h> 39 39 #include <sysinfo.h> 40 #include <kbd_port.h>41 #include <kbd.h>42 40 #include <ddi.h> 43 41 #include <errno.h> 42 #include "../kbd_port.h" 43 #include "../kbd.h" 44 44 45 45 static int gxemul_port_init(kbd_dev_t *); -
uspace/srv/hid/input/port/msim.c
r9f5cf68 rb6a088f 38 38 #include <async.h> 39 39 #include <sysinfo.h> 40 #include <kbd_port.h>41 #include <kbd.h>42 40 #include <ddi.h> 43 41 #include <errno.h> 42 #include "../kbd_port.h" 43 #include "../kbd.h" 44 44 45 45 static int msim_port_init(kbd_dev_t *); -
uspace/srv/hid/input/port/niagara.c
r9f5cf68 rb6a088f 31 31 * @ingroup kbd 32 32 * @{ 33 */ 33 */ 34 34 /** @file 35 * @brief Niagara console keyboard port driver.35 * @brief Niagara console keyboard port driver. 36 36 */ 37 37 … … 39 39 #include <ddi.h> 40 40 #include <async.h> 41 #include <kbd.h>42 #include <kbd_port.h>43 41 #include <sysinfo.h> 44 42 #include <stdio.h> … … 46 44 #include <bool.h> 47 45 #include <errno.h> 46 #include "../kbd_port.h" 47 #include "../kbd.h" 48 48 49 49 static int niagara_port_init(kbd_dev_t *); -
uspace/srv/hid/input/port/ns16550.c
r9f5cf68 rb6a088f 39 39 #include <async.h> 40 40 #include <sysinfo.h> 41 #include <input.h>42 #include <kbd.h>43 #include <kbd_port.h>44 41 #include <ddi.h> 45 42 #include <errno.h> 43 #include "../input.h" 44 #include "../kbd_port.h" 45 #include "../kbd.h" 46 46 47 47 static int ns16550_port_init(kbd_dev_t *); -
uspace/srv/hid/input/port/pl050.c
r9f5cf68 rb6a088f 41 41 #include <unistd.h> 42 42 #include <sysinfo.h> 43 #include <kbd_port.h>44 #include <kbd.h>45 43 #include <ddi.h> 46 44 #include <stdio.h> 47 45 #include <errno.h> 46 #include "../kbd_port.h" 47 #include "../kbd.h" 48 48 49 49 static int pl050_port_init(kbd_dev_t *); -
uspace/srv/hid/input/port/ski.c
r9f5cf68 rb6a088f 31 31 * @ingroup kbd 32 32 * @{ 33 */ 33 */ 34 34 /** @file 35 * @brief Ski console keyboard port driver.35 * @brief Ski console keyboard port driver. 36 36 */ 37 38 37 39 38 #include <stdlib.h> 40 39 #include <unistd.h> 41 #include <kbd.h>42 #include <kbd_port.h>43 40 #include <sys/types.h> 44 41 #include <thread.h> 45 42 #include <bool.h> 43 #include "../kbd_port.h" 44 #include "../kbd.h" 46 45 47 46 static int ski_port_init(kbd_dev_t *);
Note:
See TracChangeset
for help on using the changeset viewer.
