summaryrefslogtreecommitdiff
path: root/packages/linux/linux-ezx-2.6.23/patches/a1200-ts.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2007-10-25 10:31:01 +0000
committerKoen Kooi <koen@openembedded.org>2007-10-25 10:31:01 +0000
commit94c3777fa5fc58845643fd6fe384b15b269cc77c (patch)
tree804a5cb45759c0e9ae1bb6f3901d10bf6ee3919d /packages/linux/linux-ezx-2.6.23/patches/a1200-ts.patch
parentd3368a25f2087798de52005aacb7b532e516d380 (diff)
linux-ezx: add 2.6.23
Diffstat (limited to 'packages/linux/linux-ezx-2.6.23/patches/a1200-ts.patch')
-rw-r--r--packages/linux/linux-ezx-2.6.23/patches/a1200-ts.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/packages/linux/linux-ezx-2.6.23/patches/a1200-ts.patch b/packages/linux/linux-ezx-2.6.23/patches/a1200-ts.patch
new file mode 100644
index 0000000000..bf328cd931
--- /dev/null
+++ b/packages/linux/linux-ezx-2.6.23/patches/a1200-ts.patch
@@ -0,0 +1,39 @@
+Index: linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c
+===================================================================
+--- linux-2.6.21.orig/arch/arm/mach-pxa/ezx-a1200.c 2007-09-25 02:00:40.000000000 -0300
++++ linux-2.6.21/arch/arm/mach-pxa/ezx-a1200.c 2007-09-25 02:00:53.000000000 -0300
+@@ -269,9 +269,34 @@
+ };
+
+
++/* PCAP_TS */
++struct resource pcap_ts_resources[] = {
++ [0] = {
++ .start = EZX_IRQ_ADCDONE,
++ .end = EZX_IRQ_ADCDONE,
++ .flags = IORESOURCE_IRQ,
++ },
++ [1] = {
++ .start = EZX_IRQ_TS,
++ .end = EZX_IRQ_TS,
++ .flags = IORESOURCE_IRQ,
++ }
++};
++
++struct platform_device pcap_ts_device = {
++ .name = "pcap-ts",
++ .id = -1,
++ .dev = {
++ .parent = &a1200_pcap_device.dev,
++ },
++ .num_resources = ARRAY_SIZE(pcap_ts_resources),
++ .resource = pcap_ts_resources,
++};
++
+ static struct platform_device *devices[] __initdata = {
+ &a1200_pcap_device,
+ &a1200_eoc_device,
++ &pcap_ts_device,
+ };
+
+ static void __init a1200_init(void)