diff options
author | John Crispin <john@openwrt.org> | 2011-10-10 15:13:46 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-10-10 15:13:46 +0000 |
commit | 0a866293bd9e204978c995cb0545c20f8ab63c7e (patch) | |
tree | 7d7a9ef25035a4afd4b371b85506fe062bac125a /target/linux/lantiq/patches-3.0/991-backport-3.1-fix-eiu.patch | |
parent | 1359fe4fcf0a6cef3eced837d63c866cc75a52fc (diff) | |
download | upstream-0a866293bd9e204978c995cb0545c20f8ab63c7e.tar.gz upstream-0a866293bd9e204978c995cb0545c20f8ab63c7e.tar.bz2 upstream-0a866293bd9e204978c995cb0545c20f8ab63c7e.zip |
* update patches to 3.0
* add basic vr9 support
* backport 3.1 fixes
* backport 3.2 queue (falcon)
SVN-Revision: 28405
Diffstat (limited to 'target/linux/lantiq/patches-3.0/991-backport-3.1-fix-eiu.patch')
-rw-r--r-- | target/linux/lantiq/patches-3.0/991-backport-3.1-fix-eiu.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/lantiq/patches-3.0/991-backport-3.1-fix-eiu.patch b/target/linux/lantiq/patches-3.0/991-backport-3.1-fix-eiu.patch new file mode 100644 index 0000000000..03663b50db --- /dev/null +++ b/target/linux/lantiq/patches-3.0/991-backport-3.1-fix-eiu.patch @@ -0,0 +1,20 @@ +--- a/arch/mips/lantiq/irq.c ++++ b/arch/mips/lantiq/irq.c +@@ -132,7 +132,7 @@ + static unsigned int ltq_startup_eiu_irq(struct irq_data *d) + { + int i; +- int irq_nr = d->irq - INT_NUM_IRQ0; ++ int irq_nr = d->irq; + + ltq_enable_irq(d); + for (i = 0; i < MAX_EIU; i++) { +@@ -156,7 +156,7 @@ + static void ltq_shutdown_eiu_irq(struct irq_data *d) + { + int i; +- int irq_nr = d->irq - INT_NUM_IRQ0; ++ int irq_nr = d->irq; + + ltq_disable_irq(d); + for (i = 0; i < MAX_EIU; i++) { |