aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/input
diff options
context:
space:
mode:
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>2022-09-23 21:46:31 +0300
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2022-09-23 11:51:33 -0700
commit7aacc42f8d7d3bc9efde159b534d9199d9e2cc87 (patch)
tree27f2e80861797dad4aa5201448e3a4abd8c9ed72 /drivers/input
parentdt-bindings: input: touchscreen: elants_i2c: Add compatible for eth3915n chip (diff)
downloadlinux-dev-7aacc42f8d7d3bc9efde159b534d9199d9e2cc87.tar.xz
linux-dev-7aacc42f8d7d3bc9efde159b534d9199d9e2cc87.zip
Input: matrix_keypad - add missed header inclusion
The gpiod_count() API is defined in gpio/consumer.h. Include it. Fixes: f8f7f47d576f ("Input: matrix_keypad - replace of_gpio_named_count() by gpiod_count()") Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20220923184632.2157-1-andriy.shevchenko@linux.intel.com Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r--drivers/input/keyboard/matrix_keypad.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/keyboard/matrix_keypad.c b/drivers/input/keyboard/matrix_keypad.c
index 63f078f2bc4a..7dd3f3eda834 100644
--- a/drivers/input/keyboard/matrix_keypad.c
+++ b/drivers/input/keyboard/matrix_keypad.c
@@ -9,6 +9,7 @@
#include <linux/types.h>
#include <linux/delay.h>
+#include <linux/gpio/consumer.h>
#include <linux/platform_device.h>
#include <linux/input.h>
#include <linux/irq.h>