diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-24 08:29:39 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-29 08:47:58 -0400 |
commit | 9323f26186403433293e87e717a7785f74f75d80 (patch) | |
tree | 612ef29f951838dc4bf53589bdfd5e1368951234 /arch/arm/mach-s3c64xx | |
parent | 6845664a6a7d443f03883db59d10749d38d98b8e (diff) |
arm: Reorder irq_set_ function calls
Reorder
irq_set_chip()
irq_set_chip_data()
irq_set_handler()
to
irq_set_chip()
irq_set_handler()
irq_set_chip_data()
so the next patch can combine irq_set_chip() and irq_set_handler() to
irq_set_chip_and_handler().
Automated conversion with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/arm/mach-s3c64xx')
-rw-r--r-- | arch/arm/mach-s3c64xx/irq-eint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c64xx/irq-eint.c b/arch/arm/mach-s3c64xx/irq-eint.c index 9a4c7aeab5c5..6d703487cb8c 100644 --- a/arch/arm/mach-s3c64xx/irq-eint.c +++ b/arch/arm/mach-s3c64xx/irq-eint.c | |||
@@ -198,8 +198,8 @@ static int __init s3c64xx_init_irq_eint(void) | |||
198 | 198 | ||
199 | for (irq = IRQ_EINT(0); irq <= IRQ_EINT(27); irq++) { | 199 | for (irq = IRQ_EINT(0); irq <= IRQ_EINT(27); irq++) { |
200 | irq_set_chip(irq, &s3c_irq_eint); | 200 | irq_set_chip(irq, &s3c_irq_eint); |
201 | irq_set_chip_data(irq, (void *)eint_irq_to_bit(irq)); | ||
202 | irq_set_handler(irq, handle_level_irq); | 201 | irq_set_handler(irq, handle_level_irq); |
202 | irq_set_chip_data(irq, (void *)eint_irq_to_bit(irq)); | ||
203 | set_irq_flags(irq, IRQF_VALID); | 203 | set_irq_flags(irq, IRQF_VALID); |
204 | } | 204 | } |
205 | 205 | ||