diff options
author | Thomas Langer <thomas.langer@lantiq.com> | 2008-12-16 14:07:55 +0000 |
---|---|---|
committer | Thomas Langer <thomas.langer@lantiq.com> | 2008-12-16 14:07:55 +0000 |
commit | 7570eebcdd5628978cbdbab2fb7cb99abbc62360 (patch) | |
tree | 46e045fd88294505c849b475f46e1556278ae300 /target/linux/ifxmips/patches-2.6.27/200-genirq_fix.patch | |
parent | e7336673b14fe311ae493eee86ba8983792bcf02 (diff) | |
download | upstream-7570eebcdd5628978cbdbab2fb7cb99abbc62360.tar.gz upstream-7570eebcdd5628978cbdbab2fb7cb99abbc62360.tar.bz2 upstream-7570eebcdd5628978cbdbab2fb7cb99abbc62360.zip |
cleanup sources and prepare for 2.6.27
SVN-Revision: 13660
Diffstat (limited to 'target/linux/ifxmips/patches-2.6.27/200-genirq_fix.patch')
-rw-r--r-- | target/linux/ifxmips/patches-2.6.27/200-genirq_fix.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/linux/ifxmips/patches-2.6.27/200-genirq_fix.patch b/target/linux/ifxmips/patches-2.6.27/200-genirq_fix.patch new file mode 100644 index 0000000000..ba6372317c --- /dev/null +++ b/target/linux/ifxmips/patches-2.6.27/200-genirq_fix.patch @@ -0,0 +1,12 @@ +--- a/kernel/irq/chip.c ++++ b/kernel/irq/chip.c +@@ -526,6 +526,9 @@ handle_percpu_irq(unsigned int irq, stru + + kstat_this_cpu.irqs[irq]++; + ++ if (unlikely(!desc->action || (desc->status & IRQ_DISABLED))) ++ return; ++ + if (desc->chip->ack) + desc->chip->ack(irq); + |