diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-24 08:25:22 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-29 08:47:57 -0400 |
commit | 6845664a6a7d443f03883db59d10749d38d98b8e (patch) | |
tree | 4b4499f4d41f24152190220d93ea186fbf991fca /arch/arm/plat-mxc/3ds_debugboard.c | |
parent | 25a5662a13e604d86b0a9fd71703582a7393d8ec (diff) |
arm: Cleanup the irq namespace
Convert to the new function names. Automated with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/arm/plat-mxc/3ds_debugboard.c')
-rw-r--r-- | arch/arm/plat-mxc/3ds_debugboard.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/arm/plat-mxc/3ds_debugboard.c b/arch/arm/plat-mxc/3ds_debugboard.c index 8a2fb7046c94..9d424ce93354 100644 --- a/arch/arm/plat-mxc/3ds_debugboard.c +++ b/arch/arm/plat-mxc/3ds_debugboard.c | |||
@@ -181,12 +181,12 @@ int __init mxc_expio_init(u32 base, u32 p_irq) | |||
181 | __raw_writew(0x1F, brd_io + INTR_MASK_REG); | 181 | __raw_writew(0x1F, brd_io + INTR_MASK_REG); |
182 | for (i = MXC_EXP_IO_BASE; | 182 | for (i = MXC_EXP_IO_BASE; |
183 | i < (MXC_EXP_IO_BASE + MXC_MAX_EXP_IO_LINES); i++) { | 183 | i < (MXC_EXP_IO_BASE + MXC_MAX_EXP_IO_LINES); i++) { |
184 | set_irq_chip(i, &expio_irq_chip); | 184 | irq_set_chip(i, &expio_irq_chip); |
185 | set_irq_handler(i, handle_level_irq); | 185 | irq_set_handler(i, handle_level_irq); |
186 | set_irq_flags(i, IRQF_VALID); | 186 | set_irq_flags(i, IRQF_VALID); |
187 | } | 187 | } |
188 | set_irq_type(p_irq, IRQF_TRIGGER_LOW); | 188 | irq_set_irq_type(p_irq, IRQF_TRIGGER_LOW); |
189 | set_irq_chained_handler(p_irq, mxc_expio_irq_handler); | 189 | irq_set_chained_handler(p_irq, mxc_expio_irq_handler); |
190 | 190 | ||
191 | /* Register Lan device on the debugboard */ | 191 | /* Register Lan device on the debugboard */ |
192 | smsc911x_resources[0].start = LAN9217_BASE_ADDR(base); | 192 | smsc911x_resources[0].start = LAN9217_BASE_ADDR(base); |