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


Ignore:
Timestamp:
2009-04-21T12:46:26Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f2d2c7ba
Parents:
44b7783
Message:

change the way how input devices are wired together according to ticket #44
(also the proposal http://lists.modry.cz/cgi-bin/private/helenos-devel/2009-March/002507.html)

File:
1 edited

Legend:

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

    r44b7783 rc2417bc  
    2727 */
    2828
    29 /** @addtogroup sparc64 
     29/** @addtogroup sparc64
    3030 * @{
    3131 */
     
    136136#endif
    137137       
    138         switch (kbd_type) {
    139138#ifdef CONFIG_SGCN_KBD
    140         case KBD_SGCN:
    141                 sgcn_grab();
    142                 break;
     139        sgcn_grab();
    143140#endif
    144         default:
    145                 break;
    146         }
    147141}
    148142
     
    152146void arch_release_console(void)
    153147{
    154         switch (kbd_type) {
    155148#ifdef CONFIG_SGCN_KBD
    156         case KBD_SGCN:
    157                 sgcn_release();
    158                 break;
     149        sgcn_release();
    159150#endif
    160         default:
    161                 break;
    162         }
    163151}
    164152
Note: See TracChangeset for help on using the changeset viewer.