Changes in uspace/srv/hid/input/port/chardev.c [c8ea6eca:7348c4b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/input/port/chardev.c
rc8ea6eca r7348c4b 64 64 "char/s3c24xx_uart", 65 65 /** 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" 67 69 }; 68 70 … … 138 140 139 141 while (true) { 140 rc = chardev_read(chardev, &b, sizeof(b), &nread); 142 rc = chardev_read(chardev, &b, sizeof(b), &nread, 143 chardev_f_none); 141 144 if (rc != EOK || nread != sizeof(b)) { 142 145 printf("%s: Error reading data", NAME);
Note:
See TracChangeset
for help on using the changeset viewer.