diff options
author | John Crispin <john@openwrt.org> | 2011-07-18 16:27:11 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-07-18 16:27:11 +0000 |
commit | 6b8c119b4149a531ed25f83c4f89dd47e038cd26 (patch) | |
tree | c9561c5eb2d833e2bba32d8060d6d57ab0121be6 /target/linux/lantiq/patches-2.6.39 | |
parent | 6576d110d2ce6e01dce282cc64b2aea6521814a9 (diff) | |
download | mtk-20170518-6b8c119b4149a531ed25f83c4f89dd47e038cd26.zip mtk-20170518-6b8c119b4149a531ed25f83c4f89dd47e038cd26.tar.gz mtk-20170518-6b8c119b4149a531ed25f83c4f89dd47e038cd26.tar.bz2 |
* fix external interrupts
SVN-Revision: 27687
Diffstat (limited to 'target/linux/lantiq/patches-2.6.39')
-rw-r--r-- | target/linux/lantiq/patches-2.6.39/999-fix-eiu.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/lantiq/patches-2.6.39/999-fix-eiu.patch b/target/linux/lantiq/patches-2.6.39/999-fix-eiu.patch new file mode 100644 index 0000000..03663b5 --- /dev/null +++ b/target/linux/lantiq/patches-2.6.39/999-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++) { |