|
@@ -276,7 +276,7 @@ init_io7_irqs(struct io7 *io7,
|
|
|
|
|
|
/* Set up the lsi irqs. */
|
|
|
for (i = 0; i < 128; ++i) {
|
|
|
- set_irq_chip_and_handler(base + i, lsi_ops, handle_level_irq);
|
|
|
+ irq_set_chip_and_handler(base + i, lsi_ops, handle_level_irq);
|
|
|
irq_set_status_flags(i, IRQ_LEVEL);
|
|
|
}
|
|
|
|
|
@@ -290,7 +290,7 @@ init_io7_irqs(struct io7 *io7,
|
|
|
|
|
|
/* Set up the msi irqs. */
|
|
|
for (i = 128; i < (128 + 512); ++i) {
|
|
|
- set_irq_chip_and_handler(base + i, msi_ops, handle_level_irq);
|
|
|
+ irq_set_chip_and_handler(base + i, msi_ops, handle_level_irq);
|
|
|
irq_set_status_flags(i, IRQ_LEVEL);
|
|
|
}
|
|
|
|
|
@@ -308,8 +308,8 @@ marvel_init_irq(void)
|
|
|
|
|
|
/* Reserve the legacy irqs. */
|
|
|
for (i = 0; i < 16; ++i) {
|
|
|
- set_irq_chip_and_handler(i, &marvel_legacy_irq_type,
|
|
|
- handle_level_irq);
|
|
|
+ irq_set_chip_and_handler(i, &marvel_legacy_irq_type,
|
|
|
+ handle_level_irq);
|
|
|
}
|
|
|
|
|
|
/* Init the io7 irqs. */
|