summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/board-3430sdp.c
diff options
context:
space:
mode:
authorRanjith Lohithakshan2010-05-08 09:09:21 +0200
committerKevin Hilman2010-05-12 18:39:00 +0200
commit7a44ad2fce65ed2811ebef4adbc38bcc82cd44a7 (patch)
treeaa7d7de2085700f3b86a82c3a1fc51910e72b96a /arch/arm/mach-omap2/board-3430sdp.c
parentOMAP3EVM: Update pad configuration for wakeup enabled pads (diff)
downloadkernel-qcow2-linux-7a44ad2fce65ed2811ebef4adbc38bcc82cd44a7.tar.gz
kernel-qcow2-linux-7a44ad2fce65ed2811ebef4adbc38bcc82cd44a7.tar.xz
kernel-qcow2-linux-7a44ad2fce65ed2811ebef4adbc38bcc82cd44a7.zip
OMAP3: PM: Enable wakeup from ads7846 touchscreen
This patch enables the wakeup capabilities of ads7846 touchscreen driver. ads7846 driver can now wakeup the system from suspend on OMAP3430 EVM and SDP boards. The earlier approach of enabling wakeup on the touchscreen GPIO pin during board level mux init is removed. Instead the wakeup flag in ads7846_platform_data is enabled. Based on the flag, the ads7846 driver will do an enable_irq_wake which will eventually call into the OMAP GPIO layer and will enable the wakeup capability on the GPIO pin. Signed-off-by: Ranjith Lohithakshan <ranjithl@ti.com> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-3430sdp.c')
-rw-r--r--arch/arm/mach-omap2/board-3430sdp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-3430sdp.c b/arch/arm/mach-omap2/board-3430sdp.c
index 5822bcf7b15f..e7d629b3c76a 100644
--- a/arch/arm/mach-omap2/board-3430sdp.c
+++ b/arch/arm/mach-omap2/board-3430sdp.c
@@ -150,6 +150,7 @@ static int ads7846_get_pendown_state(void)
static struct ads7846_platform_data tsc2046_config __initdata = {
.get_pendown_state = ads7846_get_pendown_state,
.keep_vref_on = 1,
+ .wakeup = true,
};