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


Ignore:
Timestamp:
2009-03-11T17:26:48Z (15 years ago)
Author:
Pavel Rimsky <rimskyp@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
de88998
Parents:
04d672c3
Message:

SGCN driver modified to reflect the new keyboard driver architecture. Making the Serengeti bootable image smaller by not including some servers/applications.

File:
1 edited

Legend:

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

    r04d672c3 r63b1537  
    125125
    126126
    127 /** Kernel thread for polling keyboard.
    128  *
    129  * @param arg Ignored.
    130  */
    131 void kkbdpoll(void *arg)
    132 {
    133         thread_detach(THREAD);
    134 
    135         if (kbd_type != KBD_SGCN)
    136                 return;
    137 
    138         while (1) {
    139 #ifdef CONFIG_SGCN
    140                 if (kbd_type == KBD_SGCN)
    141                         sgcn_poll();
    142 #endif
    143                 thread_usleep(KEYBOARD_POLL_PAUSE);
    144         }
    145 }
    146 
    147127/** Acquire console back for kernel
    148128 *
Note: See TracChangeset for help on using the changeset viewer.