Ignore:
Timestamp:
2006-08-09T13:27:55Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d46c6ecd
Parents:
da74747
Message:

i8042 and z8530 separated, the tree compiles again.
Now there is some duplicated code in i8042.c and z8530.c,
but that can be eliminated in slower pace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/drivers/kbd.c

    rda74747 r287920f  
    3333 */
    3434
     35#include <arch/drivers/kbd.h>
    3536#ifdef CONFIG_Z8530
    3637#include <genarch/kbd/z8530.h>
     
    3940#include <genarch/kbd/16650a.h>
    4041#endif
     42
    4143#include <arch/boot/boot.h>
    4244#include <arch/mm/page.h>
    4345#include <arch/types.h>
    4446#include <typedefs.h>
     47#include <align.h>
    4548
    4649volatile uint8_t *kbd_virt_address = NULL;
     
    5053        size_t offset;
    5154        uintptr_t aligned_addr;
     55
     56        /* FIXME: supply value read from OpenFirmware */
     57        bootinfo.keyboard.size = 8;
    5258
    5359        /*
Note: See TracChangeset for help on using the changeset viewer.