diff options
author | Dmitry Torokhov <[email protected]> | 2022-09-23 12:47:37 -0700 |
---|---|---|
committer | Dmitry Torokhov <[email protected]> | 2022-09-26 08:15:10 -0700 |
commit | 4e9cded6192800a7aed8df7290896e0956b54782 (patch) | |
tree | 3e7056dff933246f11f5bbb3cfec12f085444725 | |
parent | 81a7cba79d0015fd50eb99ea6f682efce6005d05 (diff) |
Input: imx_keypad - add missing linux/input.h include
We are going to clean up matrix_keymap.h from unnecessary includes,
so the driver needs to include API that it uses directly.
Reviewed-by: Andy Shevchenko <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
-rw-r--r-- | drivers/input/keyboard/imx_keypad.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/keyboard/imx_keypad.c b/drivers/input/keyboard/imx_keypad.c index ae9303848571..e15a93619e82 100644 --- a/drivers/input/keyboard/imx_keypad.c +++ b/drivers/input/keyboard/imx_keypad.c @@ -7,6 +7,7 @@ #include <linux/delay.h> #include <linux/device.h> #include <linux/err.h> +#include <linux/input.h> #include <linux/input/matrix_keypad.h> #include <linux/interrupt.h> #include <linux/io.h> |