GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / input / serio / i8042-ip22io.h
blob3d77fb0bcf01466174687267e2ebbcdeaff7839e
1 #ifndef _I8042_IP22_H
2 #define _I8042_IP22_H
4 #include <asm/sgi/ioc.h>
5 #include <asm/sgi/ip22.h>
7 /*
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
14 * Names.
17 #define I8042_KBD_PHYS_DESC "hpc3ps2/serio0"
18 #define I8042_AUX_PHYS_DESC "hpc3ps2/serio1"
19 #define I8042_MUX_PHYS_DESC "hpc3ps2/serio%d"
22 * IRQs.
25 #define I8042_KBD_IRQ SGI_KEYBD_IRQ
26 #define I8042_AUX_IRQ SGI_KEYBD_IRQ
29 * Register numbers.
32 #define I8042_COMMAND_REG ((unsigned long)&sgioc->kbdmouse.command)
33 #define I8042_STATUS_REG ((unsigned long)&sgioc->kbdmouse.command)
34 #define I8042_DATA_REG ((unsigned long)&sgioc->kbdmouse.data)
36 static inline int i8042_read_data(void)
38 return sgioc->kbdmouse.data;
41 static inline int i8042_read_status(void)
43 return sgioc->kbdmouse.command;
46 static inline void i8042_write_data(int val)
48 sgioc->kbdmouse.data = val;
51 static inline void i8042_write_command(int val)
53 sgioc->kbdmouse.command = val;
56 static inline int i8042_platform_init(void)
59 i8042_reset = 1;
61 return 0;
64 static inline void i8042_platform_exit(void)
68 #endif /* _I8042_IP22_H */