ARM: mach-shmobile: armadillo800eva: Enable power button as wakeup source
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Simon Horman <horms@verge.net.au>
This commit is contained in:
parent
2d85b9494d
commit
5c1d2d1677
1 changed files with 3 additions and 2 deletions
|
@ -520,10 +520,11 @@ static struct platform_device hdmi_lcdc_device = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* GPIO KEY */
|
/* GPIO KEY */
|
||||||
#define GPIO_KEY(c, g, d) { .code = c, .gpio = g, .desc = d, .active_low = 1 }
|
#define GPIO_KEY(c, g, d, ...) \
|
||||||
|
{ .code = c, .gpio = g, .desc = d, .active_low = 1, __VA_ARGS__ }
|
||||||
|
|
||||||
static struct gpio_keys_button gpio_buttons[] = {
|
static struct gpio_keys_button gpio_buttons[] = {
|
||||||
GPIO_KEY(KEY_POWER, GPIO_PORT99, "SW3"),
|
GPIO_KEY(KEY_POWER, GPIO_PORT99, "SW3", .wakeup = 1),
|
||||||
GPIO_KEY(KEY_BACK, GPIO_PORT100, "SW4"),
|
GPIO_KEY(KEY_BACK, GPIO_PORT100, "SW4"),
|
||||||
GPIO_KEY(KEY_MENU, GPIO_PORT97, "SW5"),
|
GPIO_KEY(KEY_MENU, GPIO_PORT97, "SW5"),
|
||||||
GPIO_KEY(KEY_HOME, GPIO_PORT98, "SW6"),
|
GPIO_KEY(KEY_HOME, GPIO_PORT98, "SW6"),
|
||||||
|
|
Loading…
Add table
Reference in a new issue