aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/input/bu21013.h
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2019-08-08 11:03:59 -0700
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2019-09-02 09:06:52 -0700
commita1b70a44b80af641a441937803cb8251e8e6d8e3 (patch)
treee62c0659fcb1cfea178ab5514b3efc74c8ecf4da /include/linux/input/bu21013.h
parentARM: ux500: improve BU21013 touchpad bindings (diff)
downloadlinux-dev-a1b70a44b80af641a441937803cb8251e8e6d8e3.tar.xz
linux-dev-a1b70a44b80af641a441937803cb8251e8e6d8e3.zip
Input: bu21013_ts - convert to use GPIO descriptors
This driver can use GPIO descriptors rather than GPIO numbers without any problems, convert it. Name the field variables after the actual pins on the chip rather than the "reset" and "touch" names from the devicetree bindings that are vaguely inaccurate. No in-tree users pass GPIO numbers in platform data so drop this. Descriptor tables can be used to get these GPIOs from a board file if need be. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to '')
-rw-r--r--include/linux/input/bu21013.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/input/bu21013.h b/include/linux/input/bu21013.h
index 7e5b7e978e8a..58b1a9d44443 100644
--- a/include/linux/input/bu21013.h
+++ b/include/linux/input/bu21013.h
@@ -11,8 +11,6 @@
* struct bu21013_platform_device - Handle the platform data
* @touch_x_max: touch x max
* @touch_y_max: touch y max
- * @cs_pin: chip select pin
- * @touch_pin: touch gpio pin
* @ext_clk: external clock flag
* @x_flip: x flip flag
* @y_flip: y flip flag
@@ -23,8 +21,6 @@
struct bu21013_platform_device {
int touch_x_max;
int touch_y_max;
- unsigned int cs_pin;
- unsigned int touch_pin;
bool ext_clk;
bool x_flip;
bool y_flip;