Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8757e168 authored by Andrea Adami's avatar Andrea Adami Committed by Haojian Zhuang
Browse files

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
* b95ace54

Signed-off-by: default avatarAndrea Adami <andrea.adami@gmail.com>
Acked-by: default avatarHaojian Zhuang <haojian.zhuang@gmail.com>
parent f4a75d2e
Loading
Loading
Loading
Loading
+5 −0
Original line number Original line Diff line number Diff line
@@ -338,6 +338,10 @@ void __init pxa25x_map_io(void)
	pxa25x_get_clk_frequency_khz(1);
	pxa25x_get_clk_frequency_khz(1);
}
}


static struct pxa_gpio_platform_data pxa25x_gpio_info __initdata = {
	.gpio_set_wake = gpio_set_wake,
};

static struct platform_device *pxa25x_devices[] __initdata = {
static struct platform_device *pxa25x_devices[] __initdata = {
	&pxa25x_device_udc,
	&pxa25x_device_udc,
	&pxa_device_pmu,
	&pxa_device_pmu,
@@ -370,6 +374,7 @@ static int __init pxa25x_init(void)
		register_syscore_ops(&pxa2xx_mfp_syscore_ops);
		register_syscore_ops(&pxa2xx_mfp_syscore_ops);
		register_syscore_ops(&pxa2xx_clock_syscore_ops);
		register_syscore_ops(&pxa2xx_clock_syscore_ops);


		pxa_register_device(&pxa_device_gpio, &pxa25x_gpio_info);
		ret = platform_add_devices(pxa25x_devices,
		ret = platform_add_devices(pxa25x_devices,
					   ARRAY_SIZE(pxa25x_devices));
					   ARRAY_SIZE(pxa25x_devices));
		if (ret)
		if (ret)