summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorZhang Jiejing <jiejing.zhang@freescale.com>2012-11-23 14:09:54 +0800
committerZhang Jiejing <jiejing.zhang@freescale.com>2012-11-27 10:54:56 +0800
commit01539e3aa09e7203a451d567de7cedc4794453ff (patch)
treee76b4c5b0f625a63b3a8893a7cf15adc601353a9 /include
parent2dd93590bafc75bc2850f6c1e4992133fb214e06 (diff)
ENGR00234781 input: add novatek touch screen driver.
This patch add device drvier for novatek touch screen driver. This touch screen chip will be support because it have more populary screen size. Signed-off-by: Zhang Jiejing <jiejing.zhang@freescale.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/i2c/novatek_ts.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/linux/i2c/novatek_ts.h b/include/linux/i2c/novatek_ts.h
new file mode 100644
index 000000000000..0f8695fc3890
--- /dev/null
+++ b/include/linux/i2c/novatek_ts.h
@@ -0,0 +1,16 @@
+/* Copyright (C) 2012 Freescale Semiconductor, Inc. */
+
+#ifndef NOVATEK_TS_H
+#define NOVATEK_TS_H
+
+
+
+/**
+ * struct novatek_platform_data - platform data for novatek touch screen chip.
+ * @reset_gpio: gpio for chip reset pin
+ */
+struct novatek_platform_data {
+ int reset_gpio;
+};
+
+#endif