diff options
author | Jiri Slaby <jslaby@suse.cz> | 2012-02-24 06:10:16 -0500 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2012-02-24 17:25:19 -0500 |
commit | 7deacad8c3a687a5721b945e0d51b3da24a660ae (patch) | |
tree | 25fd96044b07e23668d9c08fd3ad5d3d1525f496 /arch/ia64 | |
parent | 82af3a4e9e37eee7680cd4c6fa5d31e6cbcbb05b (diff) |
[IA64] simserial, include some headers
And remove declarations which are already in the headers.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/ia64')
-rw-r--r-- | arch/ia64/hp/sim/simserial.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/arch/ia64/hp/sim/simserial.c b/arch/ia64/hp/sim/simserial.c index bff0824cf8a4..974cac88f7e7 100644 --- a/arch/ia64/hp/sim/simserial.c +++ b/arch/ia64/hp/sim/simserial.c | |||
@@ -34,9 +34,12 @@ | |||
34 | #include <linux/sysrq.h> | 34 | #include <linux/sysrq.h> |
35 | 35 | ||
36 | #include <asm/irq.h> | 36 | #include <asm/irq.h> |
37 | #include <asm/hpsim.h> | ||
37 | #include <asm/hw_irq.h> | 38 | #include <asm/hw_irq.h> |
38 | #include <asm/uaccess.h> | 39 | #include <asm/uaccess.h> |
39 | 40 | ||
41 | #include "hpsim_ssc.h" | ||
42 | |||
40 | #undef SIMSERIAL_DEBUG /* define this to get some debug information */ | 43 | #undef SIMSERIAL_DEBUG /* define this to get some debug information */ |
41 | 44 | ||
42 | #define KEYBOARD_INTR 3 /* must match with simulator! */ | 45 | #define KEYBOARD_INTR 3 /* must match with simulator! */ |
@@ -45,11 +48,6 @@ | |||
45 | 48 | ||
46 | #define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED) | 49 | #define IRQ_T(info) ((info->flags & ASYNC_SHARE_IRQ) ? IRQF_SHARED : IRQF_DISABLED) |
47 | 50 | ||
48 | #define SSC_GETCHAR 21 | ||
49 | |||
50 | extern long ia64_ssc (long, long, long, long, int); | ||
51 | extern void ia64_ssc_connect_irq (long intr, long irq); | ||
52 | |||
53 | static char *serial_name = "SimSerial driver"; | 51 | static char *serial_name = "SimSerial driver"; |
54 | static char *serial_version = "0.6"; | 52 | static char *serial_version = "0.6"; |
55 | 53 | ||