aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/input
diff options
context:
space:
mode:
authorDmitry Torokhov <dmitry.torokhov@gmail.com>2015-07-06 15:18:24 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2015-07-11 17:26:45 -0700
commit4200e831e4a8fd09fa4e78de2e571ab270c12d06 (patch)
treeda07c4aee66dccb1613b86930637436070167f4c /include/linux/input
parentInput: of_touchscreen - fix setting max values on X/Y axis (diff)
downloadlinux-dev-4200e831e4a8fd09fa4e78de2e571ab270c12d06.tar.xz
linux-dev-4200e831e4a8fd09fa4e78de2e571ab270c12d06.zip
Input: of_touchscreen - switch to using device properties
Let's switch form OF to device properties so that common parsing code could work not only on device tree but also on ACPI-based platforms. Reviewed-by: Roger Quadros <rogerq@ti.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'include/linux/input')
-rw-r--r--include/linux/input/touchscreen.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/include/linux/input/touchscreen.h b/include/linux/input/touchscreen.h
index eecc9ea6cd58..c91e1376132b 100644
--- a/include/linux/input/touchscreen.h
+++ b/include/linux/input/touchscreen.h
@@ -9,15 +9,8 @@
#ifndef _TOUCHSCREEN_H
#define _TOUCHSCREEN_H
-#include <linux/input.h>
+struct input_dev;
-#ifdef CONFIG_OF
-void touchscreen_parse_of_params(struct input_dev *dev, bool multitouch);
-#else
-static inline void touchscreen_parse_of_params(struct input_dev *dev,
- bool multitouch)
-{
-}
-#endif
+void touchscreen_parse_properties(struct input_dev *dev, bool multitouch);
#endif