diff options
author | eric miao <eric.miao@marvell.com> | 2008-03-04 01:19:58 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-04-19 06:29:04 -0400 |
commit | b9e25aced33eeb7279ccbaef198f28370cfb4e93 (patch) | |
tree | 149cac52a08fd81dbfbf611f96332f2e5341c58a /arch/arm/mach-pxa/pxa25x.c | |
parent | f6fb7af4768bc1ddc2349f6eaefedd746c8e4913 (diff) |
[ARM] pxa: merge assignment of set_wake into pxa_init_{irq,gpio}()
To further clean up the GPIO and IRQ structure:
1. pxa_init_irq_gpio() and pxa_init_gpio() combines into a single
function pxa_init_gpio()
2. assignment of set_wake merged into pxa_init_{irq,gpio}() as
an argument
Signed-off-by: eric miao <eric.miao@marvell.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-pxa/pxa25x.c')
-rw-r--r-- | arch/arm/mach-pxa/pxa25x.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index bb0bf51f5039..653a3b63d073 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c | |||
@@ -267,9 +267,8 @@ set_pwer: | |||
267 | 267 | ||
268 | void __init pxa25x_init_irq(void) | 268 | void __init pxa25x_init_irq(void) |
269 | { | 269 | { |
270 | pxa_init_irq(32); | 270 | pxa_init_irq(32, pxa25x_set_wake); |
271 | pxa_init_irq_gpio(85); | 271 | pxa_init_gpio(85, pxa25x_set_wake); |
272 | pxa_init_irq_set_wake(pxa25x_set_wake); | ||
273 | } | 272 | } |
274 | 273 | ||
275 | static struct platform_device *pxa25x_devices[] __initdata = { | 274 | static struct platform_device *pxa25x_devices[] __initdata = { |