| To: | Ralf Baechle <ralf@linux-mips.org> |
|---|---|
| Subject: | [PATCH V2 08/14] MIPS: lantiq: clear all irqs properly on boot |
| From: | John Crispin <blogic@openwrt.org> |
| Date: | Wed, 2 May 2012 14:27:36 +0200 |
| Cc: | "linux-mips@linux-mips.org" <linux-mips@linux-mips.org>, John Crispin <blogic@openwrt.org> |
| In-reply-to: | <1335961659-21358-1-git-send-email-blogic@openwrt.org> |
| References: | <1335961659-21358-1-git-send-email-blogic@openwrt.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
Due to missing brackets, the irq modules were not properly reset on boot.
Signed-off-by: John Crispin <blogic@openwrt.org>
---
Changes in V2
* make the commit message accurate
arch/mips/lantiq/irq.c | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/arch/mips/lantiq/irq.c b/arch/mips/lantiq/irq.c
index d673731..b6b1c72 100644
--- a/arch/mips/lantiq/irq.c
+++ b/arch/mips/lantiq/irq.c
@@ -271,12 +271,13 @@ void __init arch_init_irq(void)
if (!ltq_eiu_membase)
panic("Failed to remap eiu memory");
- /* make sure all irqs are turned off by default */
- for (i = 0; i < 5; i++)
+ /* turn off all irqs by default */
+ for (i = 0; i < 5; i++) {
+ /* make sure all irqs are turned off by default */
ltq_icu_w32(0, LTQ_ICU_IM0_IER + (i * LTQ_ICU_OFFSET));
-
- /* clear all possibly pending interrupts */
- ltq_icu_w32(~0, LTQ_ICU_IM0_ISR + (i * LTQ_ICU_OFFSET));
+ /* clear all possibly pending interrupts */
+ ltq_icu_w32(~0, LTQ_ICU_IM0_ISR + (i * LTQ_ICU_OFFSET));
+ }
mips_cpu_irq_init();
--
1.7.9.1
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH V2 05/14] MIPS: parse chosen node on boot, John Crispin |
|---|---|
| Next by Date: | [PATCH V2 09/14] MIPS: lantiq: enable oprofile support on lantiq targets, John Crispin |
| Previous by Thread: | [PATCH V2 05/14] MIPS: parse chosen node on boot, John Crispin |
| Next by Thread: | [PATCH V2 09/14] MIPS: lantiq: enable oprofile support on lantiq targets, John Crispin |
| Indexes: | [Date] [Thread] [Top] [All Lists] |