1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 01:21:10 +03:00
openwrt-xburst/target/linux/ifxmips/patches-2.6.32/020-genirq_fix.patch
ralph 1b9f2e03e0 [ifxmips] refresh .32 platform patches
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@21155 3c298f89-4303-0410-b956-a3cf2f4a3e73
2010-04-25 09:50:33 +00:00

13 lines
279 B
Diff

--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -637,6 +637,9 @@ handle_percpu_irq(unsigned int irq, stru
kstat_incr_irqs_this_cpu(irq, desc);
+ if (unlikely(!desc->action || (desc->status & IRQ_DISABLED)))
+ return;
+
if (desc->chip->ack)
desc->chip->ack(irq);