diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-06-01 05:15:21 -0400 |
---|---|---|
committer | Geert Uytterhoeven <geert@linux-m68k.org> | 2011-11-08 16:35:48 -0500 |
commit | edb347256c44366888debb4f9e8477ac700a9026 (patch) | |
tree | ba8a08d33f17d5679e9cbae45f73cca85c2f61c6 /arch/m68k/amiga/cia.c | |
parent | 40a72c8f711bdf8ae3e4f945261ced5432dcac4d (diff) |
m68k/irq: Add m68k_setup_irq_controller()
This is a wrapper around m68k_setup_irq_chip() that discards its dummy
second parameter, to ease the future transition to genirq.
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Diffstat (limited to 'arch/m68k/amiga/cia.c')
-rw-r--r-- | arch/m68k/amiga/cia.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/m68k/amiga/cia.c b/arch/m68k/amiga/cia.c index b04b453718d9..84663ae824ef 100644 --- a/arch/m68k/amiga/cia.c +++ b/arch/m68k/amiga/cia.c | |||
@@ -168,14 +168,16 @@ static struct irq_chip auto_irq_chip = { | |||
168 | 168 | ||
169 | void __init cia_init_IRQ(struct ciabase *base) | 169 | void __init cia_init_IRQ(struct ciabase *base) |
170 | { | 170 | { |
171 | m68k_setup_irq_chip(&cia_irq_chip, base->cia_irq, CIA_IRQS); | 171 | m68k_setup_irq_controller(&cia_irq_chip, handle_simple_irq, |
172 | base->cia_irq, CIA_IRQS); | ||
172 | 173 | ||
173 | /* clear any pending interrupt and turn off all interrupts */ | 174 | /* clear any pending interrupt and turn off all interrupts */ |
174 | cia_set_irq(base, CIA_ICR_ALL); | 175 | cia_set_irq(base, CIA_ICR_ALL); |
175 | cia_able_irq(base, CIA_ICR_ALL); | 176 | cia_able_irq(base, CIA_ICR_ALL); |
176 | 177 | ||
177 | /* override auto int and install CIA handler */ | 178 | /* override auto int and install CIA handler */ |
178 | m68k_setup_irq_chip(&auto_irq_chip, base->handler_irq, 1); | 179 | m68k_setup_irq_controller(&auto_irq_chip, handle_simple_irq, |
180 | base->handler_irq, 1); | ||
179 | m68k_irq_startup_irq(base->handler_irq); | 181 | m68k_irq_startup_irq(base->handler_irq); |
180 | if (request_irq(base->handler_irq, cia_handler, IRQF_SHARED, | 182 | if (request_irq(base->handler_irq, cia_handler, IRQF_SHARED, |
181 | base->name, base)) | 183 | base->name, base)) |