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/sun3 | |
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/sun3')
-rw-r--r-- | arch/m68k/sun3/sun3ints.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/m68k/sun3/sun3ints.c b/arch/m68k/sun3/sun3ints.c index 5d45e0065d2e..20461278e535 100644 --- a/arch/m68k/sun3/sun3ints.c +++ b/arch/m68k/sun3/sun3ints.c | |||
@@ -109,7 +109,8 @@ void __init sun3_init_IRQ(void) | |||
109 | *sun3_intreg = 1; | 109 | *sun3_intreg = 1; |
110 | 110 | ||
111 | m68k_setup_auto_interrupt(sun3_inthandle); | 111 | m68k_setup_auto_interrupt(sun3_inthandle); |
112 | m68k_setup_irq_chip(&sun3_irq_chip, IRQ_AUTO_1, 7); | 112 | m68k_setup_irq_controller(&sun3_irq_chip, handle_simple_irq, |
113 | IRQ_AUTO_1, 7); | ||
113 | m68k_setup_user_interrupt(VEC_USER, 128, NULL); | 114 | m68k_setup_user_interrupt(VEC_USER, 128, NULL); |
114 | 115 | ||
115 | if (request_irq(IRQ_AUTO_5, sun3_int5, 0, "int5", NULL)) | 116 | if (request_irq(IRQ_AUTO_5, sun3_int5, 0, "int5", NULL)) |