Changeset c6a7b3a in mainline for uspace/srv/hid
- Timestamp:
- 2013-03-28T20:39:16Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2d1fdcad
- Parents:
- cc3c27ad (diff), 5d9fce4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/srv/hid/input
- Files:
-
- 2 deleted
- 4 edited
-
Makefile (modified) (2 diffs)
-
ctl/gxe_fb.c (deleted)
-
input.c (modified) (1 diff)
-
kbd_ctl.h (modified) (1 diff)
-
kbd_port.h (modified) (1 diff)
-
port/gxemul.c (deleted)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/Makefile
rcc3c27ad rc6a7b3a 39 39 port/adb_mouse.c \ 40 40 port/chardev.c \ 41 port/gxemul.c \42 41 port/msim.c \ 43 42 port/niagara.c \ … … 48 47 proto/mousedev.c \ 49 48 ctl/apple.c \ 50 ctl/gxe_fb.c \51 49 ctl/kbdev.c \ 52 50 ctl/pc.c \ -
uspace/srv/hid/input/input.c
rcc3c27ad rc6a7b3a 440 440 kbd_add_dev(&msim_port, &stty_ctl); 441 441 #endif 442 #if (defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul)) && defined(CONFIG_FB)443 kbd_add_dev(&gxemul_port, &gxe_fb_ctl);444 #endif445 #if defined(MACHINE_lgxemul) || defined(MACHINE_bgxemul) && !defined(CONFIG_FB)446 kbd_add_dev(&gxemul_port, &stty_ctl);447 #endif448 442 #if defined(UARCH_ppc32) 449 443 kbd_add_dev(&adb_port, &apple_ctl); -
uspace/srv/hid/input/kbd_ctl.h
rcc3c27ad rc6a7b3a 49 49 50 50 extern kbd_ctl_ops_t apple_ctl; 51 extern kbd_ctl_ops_t gxe_fb_ctl;52 51 extern kbd_ctl_ops_t kbdev_ctl; 53 52 extern kbd_ctl_ops_t pc_ctl; -
uspace/srv/hid/input/kbd_port.h
rcc3c27ad rc6a7b3a 51 51 extern kbd_port_ops_t adb_port; 52 52 extern kbd_port_ops_t chardev_port; 53 extern kbd_port_ops_t gxemul_port;54 53 extern kbd_port_ops_t msim_port; 55 54 extern kbd_port_ops_t niagara_port;
Note:
See TracChangeset
for help on using the changeset viewer.
