Ignore:
File:
1 edited

Legend:

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

    rc8ea6eca 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
     
    138140
    139141        while (true) {
    140                 rc = chardev_read(chardev, &b, sizeof(b), &nread);
     142                rc = chardev_read(chardev, &b, sizeof(b), &nread,
     143                    chardev_f_none);
    141144                if (rc != EOK || nread != sizeof(b)) {
    142145                        printf("%s: Error reading data", NAME);
Note: See TracChangeset for help on using the changeset viewer.