Changeset a8bf1ea in mainline


Ignore:
Timestamp:
2012-01-04T01:03:22Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d5c60a2
Parents:
41c9a22
Message:

input: Remove traces of ps2 mouse and keyboard.

We don't need those now that the i8042 service is gone.

Location:
uspace/srv/hid/input
Files:
2 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/Makefile

    r41c9a22 ra8bf1ea  
    4343        port/adb_mouse.c \
    4444        port/chardev.c \
    45         port/chardev_mouse.c \
    4645        port/gxemul.c \
    4746        port/msim.c \
     
    5251        proto/adb.c \
    5352        proto/mousedev.c \
    54         proto/ps2.c \
    5553        ctl/apple.c \
    5654        ctl/gxe_fb.c \
  • uspace/srv/hid/input/generic/input.c

    r41c9a22 ra8bf1ea  
    418418        kbd_add_dev(&pl050_port, &pc_ctl);
    419419#endif
    420 #if defined(MACHINE_i460GX)
    421         kbd_add_dev(&chardev_port, &pc_ctl);
    422 #endif
    423420#if defined(MACHINE_ski)
    424421        kbd_add_dev(&ski_port, &stty_ctl);
     
    453450         * them automatically.
    454451         */
    455 #if defined(MACHINE_i460GX)
    456         mouse_add_dev(&chardev_mouse_port, &ps2_proto);
    457 #endif
    458452#if defined(UARCH_ppc32)
    459453        mouse_add_dev(&adb_mouse_port, &adb_proto);
  • uspace/srv/hid/input/include/mouse_proto.h

    r41c9a22 ra8bf1ea  
    4848
    4949extern mouse_proto_ops_t adb_proto;
    50 extern mouse_proto_ops_t ps2_proto;
    5150extern mouse_proto_ops_t mousedev_proto;
    5251
  • uspace/srv/hid/input/port/chardev.c

    r41c9a22 ra8bf1ea  
    6363/** List of devices to try connecting to. */
    6464static const char *in_devs[] = {
    65         "char/ps2a",
    6665        "char/s3c24ser"
    6766};
Note: See TracChangeset for help on using the changeset viewer.