diff options
-rw-r--r-- | kernel/irq/handle.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/irq/handle.c b/kernel/irq/handle.c index 3aba8d12f328..a2ee682bca2e 100644 --- a/kernel/irq/handle.c +++ b/kernel/irq/handle.c | |||
@@ -328,6 +328,8 @@ irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action) | |||
328 | irqreturn_t ret, retval = IRQ_NONE; | 328 | irqreturn_t ret, retval = IRQ_NONE; |
329 | unsigned int status = 0; | 329 | unsigned int status = 0; |
330 | 330 | ||
331 | WARN_ONCE(!in_irq(), "BUG: IRQ handler called from non-hardirq context!"); | ||
332 | |||
331 | if (!(action->flags & IRQF_DISABLED)) | 333 | if (!(action->flags & IRQF_DISABLED)) |
332 | local_irq_enable_in_hardirq(); | 334 | local_irq_enable_in_hardirq(); |
333 | 335 | ||