summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorBastian Hecht <hechtb@gmail.com>2013-04-15 16:31:00 (GMT)
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2013-04-15 17:00:44 (GMT)
commite6a90810559cc3755a5b1629d1fd0b914462f98c (patch)
tree1c72c3dca2b9807cc94593687c49423d8beaf077 /include
parent95b24d22135549ac8352d719a052002838bb9f80 (diff)
downloadlinux-fsl-qoriq-e6a90810559cc3755a5b1629d1fd0b914462f98c.tar.xz
Input: st1232 - add reset pin handling
We add the possibility to hand over a GPIO number for the reset pin. This way we can remove existing board code that takes care of it and group this information properly in the platform data or in the device tree configuration. Signed-off-by: Bastian Hecht <hechtb+renesas@gmail.com> Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/platform_data/st1232_pdata.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/platform_data/st1232_pdata.h b/include/linux/platform_data/st1232_pdata.h
new file mode 100644
index 0000000..cac3e7b
--- /dev/null
+++ b/include/linux/platform_data/st1232_pdata.h
@@ -0,0 +1,13 @@
+#ifndef _LINUX_ST1232_PDATA_H
+#define _LINUX_ST1232_PDATA_H
+
+/*
+ * Optional platform data
+ *
+ * Use this if you want the driver to drive the reset pin.
+ */
+struct st1232_pdata {
+ int reset_gpio;
+};
+
+#endif