diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2011-03-24 11:39:32 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2011-03-24 15:35:55 -0400 |
commit | d75f1bfdbccb38310088b98e9866273f5d7bda14 (patch) | |
tree | bd265c2159b319fe41d3d9cce586bd087281c396 /arch/avr32/mach-at32ap/intc.c | |
parent | 250153361fa804985392866fa0622a787dd60109 (diff) |
avr: Cleanup genirq namespace
Scripted conversion to new function names with coccinelle.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Diffstat (limited to 'arch/avr32/mach-at32ap/intc.c')
-rw-r--r-- | arch/avr32/mach-at32ap/intc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/mach-at32ap/intc.c b/arch/avr32/mach-at32ap/intc.c index d9270d64b4c9..21ce35f33aa5 100644 --- a/arch/avr32/mach-at32ap/intc.c +++ b/arch/avr32/mach-at32ap/intc.c | |||
@@ -126,7 +126,7 @@ void __init init_IRQ(void) | |||
126 | intc_writel(&intc0, INTPR0 + 4 * i, offset); | 126 | intc_writel(&intc0, INTPR0 + 4 * i, offset); |
127 | readback = intc_readl(&intc0, INTPR0 + 4 * i); | 127 | readback = intc_readl(&intc0, INTPR0 + 4 * i); |
128 | if (readback == offset) | 128 | if (readback == offset) |
129 | set_irq_chip_and_handler(i, &intc0.chip, | 129 | irq_set_chip_and_handler(i, &intc0.chip, |
130 | handle_simple_irq); | 130 | handle_simple_irq); |
131 | } | 131 | } |
132 | 132 | ||