diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2005-09-04 14:43:13 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2005-09-04 14:43:13 -0400 |
commit | 7801907b8c4a49f8ec033d13a938751114a97a55 (patch) | |
tree | c8f3cb07b2f224313519fbc7157d1f647f74d107 /arch/arm/mach-imx/irq.c | |
parent | e24da5d316667a91b3a19b5761a211946ec649bb (diff) |
[ARM] Change irq_chip wake/type methods to set_wake/set_type
This is part of Thomas Gleixner's generic IRQ patch, which converts
ARM to use the generic IRQ subsystem. Here, we rename two of the
irq_chip methods - wake becomes set_wake, and type becomes set_type.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-imx/irq.c')
-rw-r--r-- | arch/arm/mach-imx/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/irq.c b/arch/arm/mach-imx/irq.c index 0c2713426dfd..45d22dd5583a 100644 --- a/arch/arm/mach-imx/irq.c +++ b/arch/arm/mach-imx/irq.c | |||
@@ -214,7 +214,7 @@ static struct irqchip imx_gpio_chip = { | |||
214 | .ack = imx_gpio_ack_irq, | 214 | .ack = imx_gpio_ack_irq, |
215 | .mask = imx_gpio_mask_irq, | 215 | .mask = imx_gpio_mask_irq, |
216 | .unmask = imx_gpio_unmask_irq, | 216 | .unmask = imx_gpio_unmask_irq, |
217 | .type = imx_gpio_irq_type, | 217 | .set_type = imx_gpio_irq_type, |
218 | }; | 218 | }; |
219 | 219 | ||
220 | void __init | 220 | void __init |