diff options
Diffstat (limited to 'kernel/irq/spurious.c')
-rw-r--r-- | kernel/irq/spurious.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/irq/spurious.c b/kernel/irq/spurious.c index b2fb3c18d06b..ea3ceed362da 100644 --- a/kernel/irq/spurious.c +++ b/kernel/irq/spurious.c | |||
@@ -81,7 +81,7 @@ static int misrouted_irq(int irq, struct pt_regs *regs) | |||
81 | * IRQ controller clean up too | 81 | * IRQ controller clean up too |
82 | */ | 82 | */ |
83 | if(work) | 83 | if(work) |
84 | desc->handler->end(i); | 84 | desc->chip->end(i); |
85 | spin_unlock(&desc->lock); | 85 | spin_unlock(&desc->lock); |
86 | } | 86 | } |
87 | /* So the caller can adjust the irq error counts */ | 87 | /* So the caller can adjust the irq error counts */ |
@@ -166,7 +166,7 @@ void note_interrupt(unsigned int irq, irq_desc_t *desc, irqreturn_t action_ret, | |||
166 | */ | 166 | */ |
167 | printk(KERN_EMERG "Disabling IRQ #%d\n", irq); | 167 | printk(KERN_EMERG "Disabling IRQ #%d\n", irq); |
168 | desc->status |= IRQ_DISABLED; | 168 | desc->status |= IRQ_DISABLED; |
169 | desc->handler->disable(irq); | 169 | desc->chip->disable(irq); |
170 | } | 170 | } |
171 | desc->irqs_unhandled = 0; | 171 | desc->irqs_unhandled = 0; |
172 | } | 172 | } |