diff options
author | Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com> | 2010-06-17 07:35:58 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-08-05 08:26:03 -0400 |
commit | eebacda40f2f9818c92f61b2228c7888e1f4926c (patch) | |
tree | e4bfe66302b8ea6de42e2c6f74b1968d92dcbbc7 /arch/mips/emma | |
parent | 1d1929c7662d5da3badcf0df2ca5c9b2dc15db97 (diff) |
MIPS: EMMA2RH: Remove useless CPU_IRQ_BASE
For historical reasons, we used to put MIPS CPU IRQs behind SoC-specific
IRQs in the queue, and have been using CPU_IRQ_BASE as MIPS_CPU_IRQ_BASE.
In recent years, however, we've brought it back to normal order, and now
CPU_IRQ_BASE just redefines the generic MIPS_CPU_IRQ_BASE.
At the same time, NUM_CPU_IRQ is also removed as useless.
Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi.px@renesas.com>
To: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/1387/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/emma')
-rw-r--r-- | arch/mips/emma/markeins/irq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/emma/markeins/irq.c b/arch/mips/emma/markeins/irq.c index 9504b7ee0b7c..1d1c806056c5 100644 --- a/arch/mips/emma/markeins/irq.c +++ b/arch/mips/emma/markeins/irq.c | |||
@@ -301,7 +301,7 @@ void __init arch_init_irq(void) | |||
301 | /* setup cascade interrupts */ | 301 | /* setup cascade interrupts */ |
302 | setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_SW_CASCADE, &irq_cascade); | 302 | setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_SW_CASCADE, &irq_cascade); |
303 | setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_GPIO_CASCADE, &irq_cascade); | 303 | setup_irq(EMMA2RH_IRQ_BASE + EMMA2RH_GPIO_CASCADE, &irq_cascade); |
304 | setup_irq(CPU_IRQ_BASE + CPU_EMMA2RH_CASCADE, &irq_cascade); | 304 | setup_irq(MIPS_CPU_IRQ_BASE + CPU_EMMA2RH_CASCADE, &irq_cascade); |
305 | } | 305 | } |
306 | 306 | ||
307 | asmlinkage void plat_irq_dispatch(void) | 307 | asmlinkage void plat_irq_dispatch(void) |
@@ -309,13 +309,13 @@ asmlinkage void plat_irq_dispatch(void) | |||
309 | unsigned int pending = read_c0_status() & read_c0_cause() & ST0_IM; | 309 | unsigned int pending = read_c0_status() & read_c0_cause() & ST0_IM; |
310 | 310 | ||
311 | if (pending & STATUSF_IP7) | 311 | if (pending & STATUSF_IP7) |
312 | do_IRQ(CPU_IRQ_BASE + 7); | 312 | do_IRQ(MIPS_CPU_IRQ_BASE + 7); |
313 | else if (pending & STATUSF_IP2) | 313 | else if (pending & STATUSF_IP2) |
314 | emma2rh_irq_dispatch(); | 314 | emma2rh_irq_dispatch(); |
315 | else if (pending & STATUSF_IP1) | 315 | else if (pending & STATUSF_IP1) |
316 | do_IRQ(CPU_IRQ_BASE + 1); | 316 | do_IRQ(MIPS_CPU_IRQ_BASE + 1); |
317 | else if (pending & STATUSF_IP0) | 317 | else if (pending & STATUSF_IP0) |
318 | do_IRQ(CPU_IRQ_BASE + 0); | 318 | do_IRQ(MIPS_CPU_IRQ_BASE + 0); |
319 | else | 319 | else |
320 | spurious_interrupt(); | 320 | spurious_interrupt(); |
321 | } | 321 | } |