This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / asm-arm / arch-pxa / keyboard.h
1 /*
2  *  linux/include/asm-arm/arch-pxa/keyboard.h
3  *
4  *  This file contains the architecture specific keyboard definitions
5  */
6
7 #ifndef _PXA_KEYBOARD_H
8 #define _PXA_KEYBOARD_H
9
10 #include <asm/mach-types.h>
11 #include <asm/hardware.h>
12
13 extern struct kbd_ops_struct *kbd_ops;
14
15 #define kbd_disable_irq()       do { } while(0);
16 #define kbd_enable_irq()        do { } while(0);
17
18 extern int sa1111_kbd_init_hw(void);
19
20 static inline void kbd_init_hw(void)
21 {
22         if (machine_is_lubbock())
23                 sa1111_kbd_init_hw();
24 }
25
26
27 #endif  /* _PXA_KEYBOARD_H */
28