diff options
author | Kristoffer Ericson <Kristoffer.Ericson@gmail.com> | 2007-09-10 23:48:45 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-09-20 22:57:53 -0400 |
commit | f1382305b9357c8152852d6fcf0d84570d83987a (patch) | |
tree | 301757c825ed4385b4e6362207a939b8701adbd6 /arch/sh/cchips/hd6446x | |
parent | eb650d67d8ad0fa16c0c61674d980adb25155358 (diff) |
sh: hd64461: Trivial build fixes for SH7709.
Some trivial fixes to get SH7709 + HD64461 building again.
Signed-off-by: Kristoffer Ericson <Kristoffer.Ericson@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/cchips/hd6446x')
-rw-r--r-- | arch/sh/cchips/hd6446x/hd64461.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/sh/cchips/hd6446x/hd64461.c b/arch/sh/cchips/hd6446x/hd64461.c index 97f6512aa1b7..b77754d9697a 100644 --- a/arch/sh/cchips/hd6446x/hd64461.c +++ b/arch/sh/cchips/hd6446x/hd64461.c | |||
@@ -14,6 +14,9 @@ | |||
14 | #include <asm/irq.h> | 14 | #include <asm/irq.h> |
15 | #include <asm/hd64461.h> | 15 | #include <asm/hd64461.h> |
16 | 16 | ||
17 | /* This belongs in cpu specific */ | ||
18 | #define INTC_ICR1 0xA4140010UL | ||
19 | |||
17 | static void disable_hd64461_irq(unsigned int irq) | 20 | static void disable_hd64461_irq(unsigned int irq) |
18 | { | 21 | { |
19 | unsigned short nimr; | 22 | unsigned short nimr; |
@@ -121,7 +124,7 @@ int hd64461_irq_demux(int irq) | |||
121 | } | 124 | } |
122 | } | 125 | } |
123 | } | 126 | } |
124 | return __irq_demux(irq); | 127 | return irq; |
125 | } | 128 | } |
126 | 129 | ||
127 | static struct irqaction irq0 = { hd64461_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "HD64461", NULL, NULL }; | 130 | static struct irqaction irq0 = { hd64461_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "HD64461", NULL, NULL }; |
@@ -143,6 +146,7 @@ int __init setup_hd64461(void) | |||
143 | #endif | 146 | #endif |
144 | outw(0xffff, HD64461_NIMR); | 147 | outw(0xffff, HD64461_NIMR); |
145 | 148 | ||
149 | /* IRQ 80 -> 95 belongs to HD64461 */ | ||
146 | for (i = HD64461_IRQBASE; i < HD64461_IRQBASE + 16; i++) { | 150 | for (i = HD64461_IRQBASE; i < HD64461_IRQBASE + 16; i++) { |
147 | irq_desc[i].chip = &hd64461_irq_type; | 151 | irq_desc[i].chip = &hd64461_irq_type; |
148 | } | 152 | } |