diff options
author | Yoshinori Sato <ysato@users.sourceforge.jp> | 2008-02-23 18:23:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-23 20:12:16 -0500 |
commit | 5cc265a5de169d8e61ad5ba009610467e158fcec (patch) | |
tree | a0952af6ad79129a051655f67b022e911f8bbcd4 /arch/h8300/kernel | |
parent | 4223cc34365e46f5e50d5496623367c552cd8a51 (diff) |
h8300: IRQ handling update
- add missing file and declare.
- remove unused file and macros.
- some cleanup.
Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/h8300/kernel')
-rw-r--r-- | arch/h8300/kernel/irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/h8300/kernel/irq.c b/arch/h8300/kernel/irq.c index 5a1b4cfea05b..ef4f0047067d 100644 --- a/arch/h8300/kernel/irq.c +++ b/arch/h8300/kernel/irq.c | |||
@@ -26,7 +26,7 @@ | |||
26 | 26 | ||
27 | extern unsigned long *interrupt_redirect_table; | 27 | extern unsigned long *interrupt_redirect_table; |
28 | extern const int h8300_saved_vectors[]; | 28 | extern const int h8300_saved_vectors[]; |
29 | extern const unsigned long h8300_trap_table[]; | 29 | extern const h8300_vector h8300_trap_table[]; |
30 | int h8300_enable_irq_pin(unsigned int irq); | 30 | int h8300_enable_irq_pin(unsigned int irq); |
31 | void h8300_disable_irq_pin(unsigned int irq); | 31 | void h8300_disable_irq_pin(unsigned int irq); |
32 | 32 | ||
@@ -116,7 +116,7 @@ static void __init setup_vector(void) | |||
116 | { | 116 | { |
117 | int i; | 117 | int i; |
118 | unsigned long *ramvec,*ramvec_p; | 118 | unsigned long *ramvec,*ramvec_p; |
119 | const unsigned long *trap_entry; | 119 | const h8300_vector *trap_entry; |
120 | const int *saved_vector; | 120 | const int *saved_vector; |
121 | 121 | ||
122 | ramvec = get_vector_address(); | 122 | ramvec = get_vector_address(); |