Index: linux-2.6.25.4/arch/arm/mach-pxa/ezx-a780.c =================================================================== --- linux-2.6.25.4.orig/arch/arm/mach-pxa/ezx-a780.c +++ linux-2.6.25.4/arch/arm/mach-pxa/ezx-a780.c @@ -310,9 +310,34 @@ static inline void a780_keypad_init(void) {}; #endif +/* PCAP_TS */ +struct resource pcap_ts_resources[] = { + [0] = { + .start = EZX_IRQ_ADCDONE2, + .end = EZX_IRQ_ADCDONE2, + .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 = &a780_pcap_device.dev, + }, + .num_resources = ARRAY_SIZE(pcap_ts_resources), + .resource = pcap_ts_resources, +}; + static struct platform_device *devices[] __initdata = { &a780_pcap_device, &a780_emu_device, + &pcap_ts_device, }; static void __init a780_init(void)