aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/patches-3.2/0066-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2012-05-27 16:12:59 +0000
committerJohn Crispin <john@openwrt.org>2012-05-27 16:12:59 +0000
commit800277052019b54e9a5669d086a4e96bf2dcbe75 (patch)
tree57a5594d93d1a6ff1cc4d897f7bc3551e8af6128 /target/linux/lantiq/patches-3.2/0066-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
parent81ddc886e172dae27ae9f15721d2ee34fc00d890 (diff)
downloadupstream-800277052019b54e9a5669d086a4e96bf2dcbe75.tar.gz
upstream-800277052019b54e9a5669d086a4e96bf2dcbe75.tar.bz2
upstream-800277052019b54e9a5669d086a4e96bf2dcbe75.zip
3.2 R.I.P.
SVN-Revision: 31911
Diffstat (limited to 'target/linux/lantiq/patches-3.2/0066-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch')
-rw-r--r--target/linux/lantiq/patches-3.2/0066-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/target/linux/lantiq/patches-3.2/0066-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch b/target/linux/lantiq/patches-3.2/0066-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
deleted file mode 100644
index 6d07758fc1..0000000000
--- a/target/linux/lantiq/patches-3.2/0066-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 88ac424363e7d5d0a9301bd163877f8b442cc865 Mon Sep 17 00:00:00 2001
-From: John Crispin <blogic@openwrt.org>
-Date: Tue, 20 Mar 2012 09:44:27 +0100
-Subject: [PATCH 66/73] MIPS: lantiq: irqs were not cleared properly on boot
-
----
- arch/mips/lantiq/irq.c | 10 +++++-----
- 1 files changed, 5 insertions(+), 5 deletions(-)
-
---- a/arch/mips/lantiq/irq.c
-+++ b/arch/mips/lantiq/irq.c
-@@ -327,12 +327,12 @@ void __init arch_init_irq(void)
- panic("Failed to remap eiu memory\n");
- }
-
-- /* make sure all irqs are turned off by default */
-- for (i = 0; i < 5; i++)
-+ 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();
-