Subversion Repositories HelenOS

Rev

Rev 1843 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1843 Rev 1844
Line 34... Line 34...
34
 * @brief   Key processing.
34
 * @brief   Key processing.
35
 */
35
 */
36
 
36
 
37
#include <genarch/kbd/key.h>
37
#include <genarch/kbd/key.h>
38
#include <genarch/kbd/scanc.h>
38
#include <genarch/kbd/scanc.h>
-
 
39
#ifdef CONFIG_I8042
39
#include <genarch/kbd/scanc_pc.h>
40
#include <genarch/kbd/scanc_pc.h>
-
 
41
#endif
-
 
42
#if (defined(CONFIG_Z8530) || defined(CONFIG_NS16550))
-
 
43
#include <genarch/kbd/scanc_sun.h>
-
 
44
#endif
40
#include <synch/spinlock.h>
45
#include <synch/spinlock.h>
41
#include <console/chardev.h>
46
#include <console/chardev.h>
42
#include <typedefs.h>
47
#include <typedefs.h>
43
#include <macros.h>
48
#include <macros.h>
44
 
49