Changeset 7aa94304 in mainline for uspace/srv/hid/input


Ignore:
Timestamp:
2017-11-10T18:59:18Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
19397be
Parents:
3a37751
Message:

Move receiving side of Niagara console to a separate driver.

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

Legend:

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

    r3a37751 r7aa94304  
    4040        port/adb_mouse.c \
    4141        port/chardev.c \
    42         port/niagara.c \
    4342        proto/adb.c \
    4443        proto/mousedev.c \
  • uspace/srv/hid/input/input.c

    r3a37751 r7aa94304  
    647647#endif
    648648#if defined(UARCH_sparc64) && defined(PROCESSOR_sun4v)
    649         kbd_add_dev(&niagara_port, &stty_ctl);
     649        kbd_add_dev(&chardev_port, &stty_ctl);
    650650#endif
    651651        /* Silence warning on abs32le about kbd_add_dev() being unused */
  • uspace/srv/hid/input/kbd_port.h

    r3a37751 r7aa94304  
    4949extern kbd_port_ops_t adb_port;
    5050extern kbd_port_ops_t chardev_port;
    51 extern kbd_port_ops_t niagara_port;
    5251extern kbd_port_ops_t ns16550_port;
    5352
  • uspace/srv/hid/input/port/chardev.c

    r3a37751 r7aa94304  
    6161        /** S3C24xx UART - Openmoko debug console */
    6262        "char/s3c24xx_uart",
    63         /** Ski console, MSIM console */
     63        /** Ski console, MSIM console, Sun4v console */
    6464        "devices/\\hw\\console\\a"
    6565};
Note: See TracChangeset for help on using the changeset viewer.