a79f50c4f3ecac26533f8f2af61622e885f7e0d4
[openwrt.git] / target / linux / lantiq / patches-3.2 / 0067-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
1 From 845d2430d74cf6e2326da95b9205258170b30c86 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Tue, 20 Mar 2012 09:44:27 +0100
4 Subject: [PATCH 67/70] MIPS: lantiq: irqs were not cleared properly on boot
5
6 ---
7  arch/mips/lantiq/irq.c |   10 +++++-----
8  1 files changed, 5 insertions(+), 5 deletions(-)
9
10 --- a/arch/mips/lantiq/irq.c
11 +++ b/arch/mips/lantiq/irq.c
12 @@ -327,12 +327,12 @@ void __init arch_init_irq(void)
13                         panic("Failed to remap eiu memory\n");
14         }
15  
16 -       /* make sure all irqs are turned off by default */
17 -       for (i = 0; i < 5; i++)
18 +       for (i = 0; i < 5; i++) {
19 +               /* make sure all irqs are turned off by default */
20                 ltq_icu_w32(0, LTQ_ICU_IM0_IER + (i * LTQ_ICU_OFFSET));
21 -
22 -       /* clear all possibly pending interrupts */
23 -       ltq_icu_w32(~0, LTQ_ICU_IM0_ISR + (i * LTQ_ICU_OFFSET));
24 +               /* clear all possibly pending interrupts */
25 +               ltq_icu_w32(~0, LTQ_ICU_IM0_ISR + (i * LTQ_ICU_OFFSET));
26 +       }
27  
28         mips_cpu_irq_init();
29