Changeset 7348c4b in mainline for uspace/srv/hid/input


Ignore:
Timestamp:
2019-04-10T15:04:17Z (7 years ago)
Author:
Jakub Jermář <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
69b6dd1f
Parents:
8df0306
git-author:
Petr Pavlu <setup@…> (2019-03-31 14:36:08)
git-committer:
Jakub Jermář <jakub@…> (2019-04-10 15:04:17)
Message:

arm64: Add PL011 uspace driver

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

Legend:

Unmodified
Added
Removed
  • uspace/srv/hid/input/input.c

    r8df0306 r7348c4b  
    630630        kbd_add_dev(&chardev_port, &stty_ctl);
    631631#endif
     632#if defined(UARCH_arm64) && defined(MACHINE_virt)
     633        kbd_add_dev(&chardev_port, &stty_ctl);
     634#endif
    632635        /* Silence warning on abs32le about kbd_add_dev() being unused */
    633636        (void) kbd_add_dev;
  • uspace/srv/hid/input/port/chardev.c

    r8df0306 r7348c4b  
    6464        "char/s3c24xx_uart",
    6565        /** Ski console, MSIM console, Sun4v console */
    66         "devices/\\hw\\console\\a"
     66        "devices/\\hw\\console\\a",
     67        /** PL011 serial console */
     68        "devices/\\hw\\uart\\a"
    6769};
    6870
Note: See TracChangeset for help on using the changeset viewer.