diff options
author | Antonio Ospite <ospite@studenti.unina.it> | 2007-06-22 07:11:50 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-06-22 07:11:50 +0000 |
commit | 005b94b2d0208080b63ccd708fd354cf5717b84c (patch) | |
tree | 10c19cf8f411fc4554908c1cfae9d4b8e309c8a9 /packages/linux/linux-ezx-2.6.21/patches/e680-locksw.patch | |
parent | 5d946375b12e7f15a42f47cdf922f170dce9c718 (diff) |
linux-ezx: remove old kernel, update 2.6.21 and add script to generate SRC_URI from the quilt series in svn
Diffstat (limited to 'packages/linux/linux-ezx-2.6.21/patches/e680-locksw.patch')
-rwxr-xr-x | packages/linux/linux-ezx-2.6.21/patches/e680-locksw.patch | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/packages/linux/linux-ezx-2.6.21/patches/e680-locksw.patch b/packages/linux/linux-ezx-2.6.21/patches/e680-locksw.patch new file mode 100755 index 0000000000..36b52a916a --- /dev/null +++ b/packages/linux/linux-ezx-2.6.21/patches/e680-locksw.patch @@ -0,0 +1,43 @@ +Index: linux-2.6.21/arch/arm/mach-pxa/ezx-e680.c +=================================================================== +--- linux-2.6.21.orig/arch/arm/mach-pxa/ezx-e680.c 2007-06-08 18:38:48.000000000 +0200 ++++ linux-2.6.21/arch/arm/mach-pxa/ezx-e680.c 2007-06-08 18:38:59.000000000 +0200 +@@ -16,6 +16,7 @@ + #include <linux/mmc/host.h> + #include <linux/irq.h> + #include <linux/input.h> ++#include <linux/gpio_keys.h> + + #include <asm/mach-types.h> + #include <asm/mach/arch.h> +@@ -220,8 +221,30 @@ + }, + }; + ++static struct gpio_keys_button e680locksw_buttons[] = { ++ [0] = { ++ .keycode = KEY_SLEEP, ++ .gpio = GPIO_LOCK_SCREEN_PIN, ++ .desc = "E680 lockscreen sw", ++ }, ++}; ++ ++static struct gpio_keys_platform_data e680locksw_platform_data = { ++ .buttons = e680locksw_buttons, ++ .nbuttons = 1, ++}; ++ ++static struct platform_device e680locksw_device = { ++ .name = "gpio-keys", ++ .id = -1, ++ .dev = { ++ .platform_data = &e680locksw_platform_data, ++ }, ++}; ++ + static struct platform_device *devices[] __initdata = { + &pcap_ts_device, ++ &e680locksw_device, + }; + + static void __init e680_init(void) |