Changeset a8bf1ea in mainline
- Timestamp:
- 2012-01-04T01:03:22Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d5c60a2
- Parents:
- 41c9a22
- Location:
- uspace/srv/hid/input
- Files:
-
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/Makefile
r41c9a22 ra8bf1ea 43 43 port/adb_mouse.c \ 44 44 port/chardev.c \ 45 port/chardev_mouse.c \46 45 port/gxemul.c \ 47 46 port/msim.c \ … … 52 51 proto/adb.c \ 53 52 proto/mousedev.c \ 54 proto/ps2.c \55 53 ctl/apple.c \ 56 54 ctl/gxe_fb.c \ -
uspace/srv/hid/input/generic/input.c
r41c9a22 ra8bf1ea 418 418 kbd_add_dev(&pl050_port, &pc_ctl); 419 419 #endif 420 #if defined(MACHINE_i460GX)421 kbd_add_dev(&chardev_port, &pc_ctl);422 #endif423 420 #if defined(MACHINE_ski) 424 421 kbd_add_dev(&ski_port, &stty_ctl); … … 453 450 * them automatically. 454 451 */ 455 #if defined(MACHINE_i460GX)456 mouse_add_dev(&chardev_mouse_port, &ps2_proto);457 #endif458 452 #if defined(UARCH_ppc32) 459 453 mouse_add_dev(&adb_mouse_port, &adb_proto); -
uspace/srv/hid/input/include/mouse_proto.h
r41c9a22 ra8bf1ea 48 48 49 49 extern mouse_proto_ops_t adb_proto; 50 extern mouse_proto_ops_t ps2_proto;51 50 extern mouse_proto_ops_t mousedev_proto; 52 51 -
uspace/srv/hid/input/port/chardev.c
r41c9a22 ra8bf1ea 63 63 /** List of devices to try connecting to. */ 64 64 static const char *in_devs[] = { 65 "char/ps2a",66 65 "char/s3c24ser" 67 66 };
Note:
See TracChangeset
for help on using the changeset viewer.