This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / asm-arm / arch-sa1100 / keyboard.h
1 /*
2  *  linux/include/asm-arm/arch-sa1100/keyboard.h
3  *  Created 16 Dec 1999 by Nicolas Pitre <nico@cam.org>
4  *  This file contains the SA1100 architecture specific keyboard definitions
5  */
6 #ifndef _SA1100_KEYBOARD_H
7 #define _SA1100_KEYBOARD_H
8
9 #include <linux/config.h>
10 #include <asm/mach-types.h>
11
12 extern void gc_kbd_init_hw(void);
13 extern void smartio_kbd_init_hw(void);
14
15 static inline void kbd_init_hw(void)
16 {
17         if (machine_is_graphicsclient())
18                 gc_kbd_init_hw();
19         if (machine_is_adsbitsy())
20                 smartio_kbd_init_hw();
21 }
22
23 #endif  /* _SA1100_KEYBOARD_H */