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-pxa | |
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-pxa')
-rw-r--r-- | arch/arm/mach-pxa/irq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-pxa/irq.c b/arch/arm/mach-pxa/irq.c index cc7bfc3428c8..70344cc75743 100644 --- a/arch/arm/mach-pxa/irq.c +++ b/arch/arm/mach-pxa/irq.c | |||
@@ -138,8 +138,8 @@ static void __init pxa_init_low_gpio_irq(set_wake_t fn) | |||
138 | 138 | ||
139 | for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) { | 139 | for (irq = IRQ_GPIO0; irq <= IRQ_GPIO1; irq++) { |
140 | irq_set_chip(irq, &pxa_low_gpio_chip); | 140 | irq_set_chip(irq, &pxa_low_gpio_chip); |
141 | irq_set_chip_data(irq, irq_base(0)); | ||
142 | irq_set_handler(irq, handle_edge_irq); | 141 | irq_set_handler(irq, handle_edge_irq); |
142 | irq_set_chip_data(irq, irq_base(0)); | ||
143 | set_irq_flags(irq, IRQF_VALID); | 143 | set_irq_flags(irq, IRQF_VALID); |
144 | } | 144 | } |
145 | 145 | ||
@@ -166,8 +166,8 @@ void __init pxa_init_irq(int irq_nr, set_wake_t fn) | |||
166 | 166 | ||
167 | irq = PXA_IRQ(i); | 167 | irq = PXA_IRQ(i); |
168 | irq_set_chip(irq, &pxa_internal_irq_chip); | 168 | irq_set_chip(irq, &pxa_internal_irq_chip); |
169 | irq_set_chip_data(irq, base); | ||
170 | irq_set_handler(irq, handle_level_irq); | 169 | irq_set_handler(irq, handle_level_irq); |
170 | irq_set_chip_data(irq, base); | ||
171 | set_irq_flags(irq, IRQF_VALID); | 171 | set_irq_flags(irq, IRQF_VALID); |
172 | } | 172 | } |
173 | } | 173 | } |