Changeset 9693835 in mainline for kernel/genarch/src/drivers
- Timestamp:
- 2009-03-13T09:00:58Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0b16e9d
- Parents:
- 648c9d9
- Location:
- kernel/genarch/src/drivers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/drivers/dsrln/dsrlnin.c
r648c9d9 r9693835 40 40 #include <arch/asm.h> 41 41 42 indev_operations_t kbrdin_ops = {42 static indev_operations_t kbrdin_ops = { 43 43 .poll = NULL 44 44 }; -
kernel/genarch/src/drivers/i8042/i8042.c
r648c9d9 r9693835 43 43 #include <mm/slab.h> 44 44 45 indev_operations_t kbrdin_ops = {45 static indev_operations_t kbrdin_ops = { 46 46 .poll = NULL 47 47 }; -
kernel/genarch/src/drivers/ns16550/ns16550.c
r648c9d9 r9693835 43 43 #define LSR_DATA_READY 0x01 44 44 45 indev_operations_t kbrdin_ops = {45 static indev_operations_t kbrdin_ops = { 46 46 .poll = NULL 47 47 }; … … 65 65 if (pio_read_8(&dev->lsr) & LSR_DATA_READY) { 66 66 uint8_t x = pio_read_8(&dev->rbr); 67 chardev_push_character(&instance->kbrdin, x);67 indev_push_character(&instance->kbrdin, x); 68 68 } 69 69 } -
kernel/genarch/src/drivers/z8530/z8530.c
r648c9d9 r9693835 41 41 #include <mm/slab.h> 42 42 43 indev_operations_t kbrdin_ops = {43 static indev_operations_t kbrdin_ops = { 44 44 .poll = NULL 45 45 }; … … 83 83 if (z8530_read(&dev->ctl_a, RR0) & RR0_RCA) { 84 84 uint8_t x = z8530_read(&dev->ctl_a, RR8); 85 chardev_push_character(&instance->kbrdin, x);85 indev_push_character(&instance->kbrdin, x); 86 86 } 87 87 }
Note:
See TracChangeset
for help on using the changeset viewer.