diff options
author | Andrea Adami <andrea.adami@gmail.com> | 2012-11-20 19:37:25 -0500 |
---|---|---|
committer | Haojian Zhuang <haojian.zhuang@gmail.com> | 2012-11-21 00:14:42 -0500 |
commit | 8757e168190a6ed2cd4aa23fc59bf86b0091b596 (patch) | |
tree | 8e9bed5d9526d34423b9ccab425b5abe0ed28d03 /arch/arm/mach-pxa | |
parent | f4a75d2eb7b1e2206094b901be09adb31ba63681 (diff) |
ARM: pxa: fix pxa25x gpio wakeup setting
* Since 3.3 gpio wakeup is broken on pxa25x (tested on corgi and poodle).
* Use gpio_set_wake like done for pxa27x with commit id
* b95ace54a23e2f8ebb032744cebb17c9f43bf651
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/pxa25x.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/pxa25x.c b/arch/arm/mach-pxa/pxa25x.c index 3352b37b60cf..aeb913eee8a6 100644 --- a/arch/arm/mach-pxa/pxa25x.c +++ b/arch/arm/mach-pxa/pxa25x.c | |||
@@ -338,6 +338,10 @@ void __init pxa25x_map_io(void) | |||
338 | pxa25x_get_clk_frequency_khz(1); | 338 | pxa25x_get_clk_frequency_khz(1); |
339 | } | 339 | } |
340 | 340 | ||
341 | static struct pxa_gpio_platform_data pxa25x_gpio_info __initdata = { | ||
342 | .gpio_set_wake = gpio_set_wake, | ||
343 | }; | ||
344 | |||
341 | static struct platform_device *pxa25x_devices[] __initdata = { | 345 | static struct platform_device *pxa25x_devices[] __initdata = { |
342 | &pxa25x_device_udc, | 346 | &pxa25x_device_udc, |
343 | &pxa_device_pmu, | 347 | &pxa_device_pmu, |
@@ -370,6 +374,7 @@ static int __init pxa25x_init(void) | |||
370 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); | 374 | register_syscore_ops(&pxa2xx_mfp_syscore_ops); |
371 | register_syscore_ops(&pxa2xx_clock_syscore_ops); | 375 | register_syscore_ops(&pxa2xx_clock_syscore_ops); |
372 | 376 | ||
377 | pxa_register_device(&pxa_device_gpio, &pxa25x_gpio_info); | ||
373 | ret = platform_add_devices(pxa25x_devices, | 378 | ret = platform_add_devices(pxa25x_devices, |
374 | ARRAY_SIZE(pxa25x_devices)); | 379 | ARRAY_SIZE(pxa25x_devices)); |
375 | if (ret) | 380 | if (ret) |