aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/patches-3.3/0063-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2012-07-31 18:49:54 +0000
committerJohn Crispin <blogic@openwrt.org>2012-07-31 18:49:54 +0000
commitf3513b1b9bacde9a6572a98c168b6423e500f5d2 (patch)
tree4035b1c30da5aa080517ab0846ff78de8d3825d5 /target/linux/lantiq/patches-3.3/0063-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
parent9f30da9d337f5de6976c42c7ed413d9efa2efe90 (diff)
downloadmaster-187ad058-f3513b1b9bacde9a6572a98c168b6423e500f5d2.tar.gz
master-187ad058-f3513b1b9bacde9a6572a98c168b6423e500f5d2.tar.bz2
master-187ad058-f3513b1b9bacde9a6572a98c168b6423e500f5d2.zip
[lantiq] add lantiq svip support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32925 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/lantiq/patches-3.3/0063-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch')
-rw-r--r--target/linux/lantiq/patches-3.3/0063-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.3/0063-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch b/target/linux/lantiq/patches-3.3/0063-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
deleted file mode 100644
index bcdae2174e..0000000000
--- a/target/linux/lantiq/patches-3.3/0063-MIPS-lantiq-irqs-were-not-cleared-properly-on-boot.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 875a7139535da541aa2e9de308b3f6f791a131d0 Mon Sep 17 00:00:00 2001
-From: John Crispin <blogic@openwrt.org>
-Date: Tue, 20 Mar 2012 09:44:27 +0100
-Subject: [PATCH 63/70] 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
-@@ -326,12 +326,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();
-