diff options
Diffstat (limited to 'drivers/parisc/superio.c')
-rw-r--r-- | drivers/parisc/superio.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/parisc/superio.c b/drivers/parisc/superio.c index f7806d81f1e0..aceec6ed5116 100644 --- a/drivers/parisc/superio.c +++ b/drivers/parisc/superio.c | |||
@@ -139,7 +139,7 @@ superio_interrupt(int parent_irq, void *devp) | |||
139 | } | 139 | } |
140 | 140 | ||
141 | /* Call the appropriate device's interrupt */ | 141 | /* Call the appropriate device's interrupt */ |
142 | __do_IRQ(local_irq); | 142 | generic_handle_irq(local_irq); |
143 | 143 | ||
144 | /* set EOI - forces a new interrupt if a lower priority device | 144 | /* set EOI - forces a new interrupt if a lower priority device |
145 | * still needs service. | 145 | * still needs service. |
@@ -363,9 +363,7 @@ int superio_fixup_irq(struct pci_dev *pcidev) | |||
363 | #endif | 363 | #endif |
364 | 364 | ||
365 | for (i = 0; i < 16; i++) { | 365 | for (i = 0; i < 16; i++) { |
366 | struct irq_desc *desc = irq_to_desc(i); | 366 | set_irq_chip_and_handler(i, &superio_interrupt_type, parisc_do_IRQ); |
367 | |||
368 | desc->chip = &superio_interrupt_type; | ||
369 | } | 367 | } |
370 | 368 | ||
371 | /* | 369 | /* |