mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:25:20 +02:00
a4ba8220f5
* update kernel to .37 * add support for falcon (big thank you goes to lantiq !!) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26021 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
276 B
Diff
13 lines
276 B
Diff
--- a/kernel/irq/chip.c
|
|
+++ b/kernel/irq/chip.c
|
|
@@ -678,6 +678,9 @@
|
|
|
|
kstat_incr_irqs_this_cpu(irq, desc);
|
|
|
|
+ if (unlikely(!desc->action || (desc->status & IRQ_DISABLED)))
|
|
+ return;
|
|
+
|
|
if (desc->irq_data.chip->irq_ack)
|
|
desc->irq_data.chip->irq_ack(&desc->irq_data);
|
|
|