aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq/manage.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/irq/manage.c')
-rw-r--r--kernel/irq/manage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index f3f36f6af9a1..31d7678e0269 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -779,7 +779,7 @@ __setup_irq(unsigned int irq, struct irq_desc *desc, struct irqaction *new)
779 if (!(desc->status & IRQ_NOAUTOEN)) { 779 if (!(desc->status & IRQ_NOAUTOEN)) {
780 desc->depth = 0; 780 desc->depth = 0;
781 desc->status &= ~IRQ_DISABLED; 781 desc->status &= ~IRQ_DISABLED;
782 desc->irq_data.chip->startup(irq); 782 desc->irq_data.chip->irq_startup(&desc->irq_data);
783 } else 783 } else
784 /* Undo nested disables: */ 784 /* Undo nested disables: */
785 desc->depth = 1; 785 desc->depth = 1;