1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 02:24:45 +03:00
openwrt-xburst/target/linux/ifxmips/patches-2.6.28/200-genirq_fix.patch

13 lines
279 B
Diff
Raw Normal View History

--- a/kernel/irq/chip.c
+++ b/kernel/irq/chip.c
@@ -524,6 +524,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);