diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2007-10-17 13:15:17 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-17 13:28:49 -0400 |
commit | 0eafaae84e21ac033815cc9f33c3ae889cd7ccfe (patch) | |
tree | 86e10f8de9a4f606699781fc97dfed1df2379dec | |
parent | 9ee5389c58d7e74ae06887541fbb0ff6ecc6a499 (diff) |
[MIPS] IP22: Fix hang due to messing with timer interrupt handler
As IP22 is now using do_IRQ for timer interrupt, don't mess with
interrupt handler any longer
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/sgi-ip22/ip22-time.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/arch/mips/sgi-ip22/ip22-time.c b/arch/mips/sgi-ip22/ip22-time.c index 9b9bffd2e8fb..10e505491655 100644 --- a/arch/mips/sgi-ip22/ip22-time.c +++ b/arch/mips/sgi-ip22/ip22-time.c | |||
@@ -192,12 +192,3 @@ void indy_8254timer_irq(void) | |||
192 | ArcEnterInteractiveMode(); | 192 | ArcEnterInteractiveMode(); |
193 | irq_exit(); | 193 | irq_exit(); |
194 | } | 194 | } |
195 | |||
196 | void __init plat_timer_setup(struct irqaction *irq) | ||
197 | { | ||
198 | /* over-write the handler, we use our own way */ | ||
199 | irq->handler = no_action; | ||
200 | |||
201 | /* setup irqaction */ | ||
202 | setup_irq(SGI_TIMER_IRQ, irq); | ||
203 | } | ||