diff options
author | Fabio Estevam <festevam@gmail.com> | 2019-10-27 18:35:21 +0100 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2019-10-27 19:14:22 +0100 |
commit | d34a069e1c63ddc20e2c3c8bfdec2510682b15f3 (patch) | |
tree | 5aa98dc355decbaf281fb9250f1c82efaa86cd11 /drivers/input/touchscreen | |
parent | Input: gpio_keys_polled - switch to using devm_fwnode_gpiod_get() (diff) | |
download | linux-d34a069e1c63ddc20e2c3c8bfdec2510682b15f3.tar.xz linux-d34a069e1c63ddc20e2c3c8bfdec2510682b15f3.zip |
Input: colibri-vf50-ts - remove unneeded gpio.h header file
The touchscreen device is a GPIO consumer, not a GPIO controller,
so there is no need to include <linux/gpio.h>.
Remove the unneeded header file.
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Link: https://lore.kernel.org/r/20191026185958.24158-1-festevam@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input/touchscreen')
-rw-r--r-- | drivers/input/touchscreen/colibri-vf50-ts.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/input/touchscreen/colibri-vf50-ts.c b/drivers/input/touchscreen/colibri-vf50-ts.c index 0e40897949bb..aa829725ded7 100644 --- a/drivers/input/touchscreen/colibri-vf50-ts.c +++ b/drivers/input/touchscreen/colibri-vf50-ts.c @@ -9,7 +9,6 @@ #include <linux/delay.h> #include <linux/err.h> -#include <linux/gpio.h> #include <linux/gpio/consumer.h> #include <linux/iio/consumer.h> #include <linux/iio/types.h> |