summaryrefslogtreecommitdiffstats
path: root/arch/sh/boards/mach-dreamcast/setup.c
diff options
context:
space:
mode:
authorMatt Fleming <mjf@gentoo.org>2008-12-14 12:02:26 +0000
committerPaul Mundt <lethal@linux-sh.org>2008-12-22 18:44:06 +0900
commite85a47744bbdfbcc65c94b2af67499f861c6fa42 (patch)
treec37699b7741c3d97fdf01e68914a3383f408c69a /arch/sh/boards/mach-dreamcast/setup.c
parentbd0a22d21f26864792a0e49c20f5bd25d6c335e4 (diff)
downloadop-kernel-dev-e85a47744bbdfbcc65c94b2af67499f861c6fa42.zip
op-kernel-dev-e85a47744bbdfbcc65c94b2af67499f861c6fa42.tar.gz
sh: Convert Dreamcast support from hw_interrupt_type to irq_chip
Switch the dreamcast IRQ code over to the irq_chip way of doing things, so that we can set GENERIC_HARDIRQS_NO__DO_IRQ for all SuperH boards. Also, whilst I'm here change some things to make checkpatch.pl happy: - Indent with tabs, not with spaces - Include <linux/io.h>, not <asm/io.h> - Fix the multi-line comment style - Fix some typos in the comments Tested-by: Adrian McMenamin <adrian@newgolddream.dyndns.info> Signed-off-by: Matt Fleming <mjf@gentoo.org> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/mach-dreamcast/setup.c')
-rw-r--r--arch/sh/boards/mach-dreamcast/setup.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/sh/boards/mach-dreamcast/setup.c b/arch/sh/boards/mach-dreamcast/setup.c
index 7d944fc..d1bee48 100644
--- a/arch/sh/boards/mach-dreamcast/setup.c
+++ b/arch/sh/boards/mach-dreamcast/setup.c
@@ -28,7 +28,7 @@
#include <asm/machvec.h>
#include <mach/sysasic.h>
-extern struct hw_interrupt_type systemasic_int;
+extern struct irq_chip systemasic_int;
extern void aica_time_init(void);
extern int gapspci_init(void);
extern int systemasic_irq_demux(int);
@@ -47,7 +47,8 @@ static void __init dreamcast_setup(char **cmdline_p)
/* Assign all virtual IRQs to the System ASIC int. handler */
for (i = HW_EVENT_IRQ_BASE; i < HW_EVENT_IRQ_MAX; i++)
- irq_desc[i].chip = &systemasic_int;
+ set_irq_chip_and_handler(i, &systemasic_int,
+ handle_level_irq);
board_time_init = aica_time_init;
OpenPOWER on IntegriCloud