From 94c3777fa5fc58845643fd6fe384b15b269cc77c Mon Sep 17 00:00:00 2001 From: Koen Kooi Date: Thu, 25 Oct 2007 10:31:01 +0000 Subject: linux-ezx: add 2.6.23 --- .../linux-ezx-2.6.23/patches/a1200-flip.patch | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 packages/linux/linux-ezx-2.6.23/patches/a1200-flip.patch (limited to 'packages/linux/linux-ezx-2.6.23/patches/a1200-flip.patch') diff --git a/packages/linux/linux-ezx-2.6.23/patches/a1200-flip.patch b/packages/linux/linux-ezx-2.6.23/patches/a1200-flip.patch new file mode 100644 index 0000000000..d932ca1605 --- /dev/null +++ b/packages/linux/linux-ezx-2.6.23/patches/a1200-flip.patch @@ -0,0 +1,47 @@ +Index: linux-2.6.23/arch/arm/mach-pxa/ezx-a1200.c +=================================================================== +--- linux-2.6.23.orig/arch/arm/mach-pxa/ezx-a1200.c 2007-10-24 19:37:28.000000000 +0200 ++++ linux-2.6.23/arch/arm/mach-pxa/ezx-a1200.c 2007-10-24 19:40:22.000000000 +0200 +@@ -16,6 +16,7 @@ + #include + #include + #include ++#include + + #include + #include +@@ -292,11 +293,34 @@ + .num_resources = ARRAY_SIZE(pcap_ts_resources), + .resource = pcap_ts_resources, + }; ++/* Flip */ ++#undef GPIO_FLIP_PIN ++#define GPIO_FLIP_PIN 15 /* FIXME */ ++static struct gpio_keys_button a1200flip_buttons[] = { ++ [0] = { ++ .code = KEY_SLEEP, ++ .gpio = GPIO_FLIP_PIN, ++ .desc = "A1200 flip", ++ }, ++}; ++ ++static struct gpio_keys_platform_data a1200flip_platform_data = { ++ .buttons = a1200flip_buttons, ++ .nbuttons = 1, ++}; ++static struct platform_device a1200flip_device = { ++ .name = "gpio-keys", ++ .id = -1, ++ .dev = { ++ .platform_data = &a1200flip_platform_data, ++ }, ++}; + + static struct platform_device *devices[] __initdata = { + &a1200_pcap_device, + &a1200_eoc_device, + &pcap_ts_device, ++ &a1200flip_device, + }; + + static void __init a1200_init(void) -- cgit v1.2.3