Index: linux-2.6.21/arch/arm/mach-pxa/ezx-a780.c =================================================================== --- linux-2.6.21.orig/arch/arm/mach-pxa/ezx-a780.c 2007-05-08 13:23:57.000000000 -0300 +++ linux-2.6.21/arch/arm/mach-pxa/ezx-a780.c 2007-05-08 13:26:53.000000000 -0300 @@ -17,6 +17,7 @@ #include #include #include +#include #include #include @@ -193,7 +194,30 @@ }, }; +static struct gpio_keys_button a780flip_buttons[] = { + [0] = { + .keycode = KEY_SLEEP, + .gpio = GPIO_FLIP_PIN, + .desc = "A780 flip", + }, +}; + +static struct gpio_keys_platform_data a780flip_platform_data = { + .buttons = a780flip_buttons, + .nbuttons = 1, +}; + +static struct platform_device a780flip_device = { + .name = "gpio-keys", + .id = -1, + .dev = { + .platform_data = &a780flip_platform_data, + }, +}; + + static struct platform_device *devices[] __initdata = { + &a780flip_device, }; static void __init a780_init(void)