Ignore:
Timestamp:
2009-03-13T09:00:58Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0b16e9d
Parents:
648c9d9
Message:

get back support for framebuffer and keyboard for sparc64 (generic)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/genarch/src/drivers/ns16550/ns16550.c

    r648c9d9 r9693835  
    4343#define LSR_DATA_READY  0x01
    4444
    45 indev_operations_t kbrdin_ops = {
     45static indev_operations_t kbrdin_ops = {
    4646        .poll = NULL
    4747};
     
    6565        if (pio_read_8(&dev->lsr) & LSR_DATA_READY) {
    6666                uint8_t x = pio_read_8(&dev->rbr);
    67                 chardev_push_character(&instance->kbrdin, x);
     67                indev_push_character(&instance->kbrdin, x);
    6868        }
    6969}
Note: See TracChangeset for help on using the changeset viewer.