Changeset 0f74869 in mainline for kernel/arch/sparc64/src/console.c


Ignore:
Timestamp:
2009-02-22T15:20:43Z (15 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f9f9a13
Parents:
e7abb0e
Message:

Unbreak sparc64.
Due to the lack of userspace bus drivers for the z8530 and ns16550,
we are currently handling exactly one interrupt from these devices
in userspace.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/console.c

    re7abb0e r0f74869  
    163163#endif
    164164        switch (kbd_type) {
    165 #ifdef CONFIG_Z8530
    166         case KBD_Z8530:
    167                 z8530_grab();
    168                 break;
    169 #endif
    170 #ifdef CONFIG_NS16550
    171         case KBD_NS16550:
    172                 ns16550_grab();
    173                 break;
    174 #endif
    175165#ifdef CONFIG_SGCN
    176166        case KBD_SGCN:
     
    189179{
    190180        switch (kbd_type) {
    191 #ifdef CONFIG_Z8530
    192         case KBD_Z8530:
    193                 z8530_release();
    194                 break;
    195 #endif
    196 #ifdef CONFIG_NS16550
    197         case KBD_NS16550:
    198                 ns16550_release();
    199                 break;
    200 #endif
    201181#ifdef CONFIG_SGCN
    202182        case KBD_SGCN:
Note: See TracChangeset for help on using the changeset viewer.