diff options
author | Dmitry Torokhov | 2022-09-23 12:47:36 -0700 |
---|---|---|
committer | Dmitry Torokhov | 2022-09-26 08:15:03 -0700 |
commit | 81a7cba79d0015fd50eb99ea6f682efce6005d05 (patch) | |
tree | 3280ea07d006f81bf7937efa9a48dca664b3ac80 | |
parent | d25a9d8f8d314e65a229cc828433ce3cc9cfbd4e (diff) |
Input: mt6779-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 <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220923194738.927408-3-dmitry.torokhov@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | drivers/input/keyboard/mt6779-keypad.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/keyboard/mt6779-keypad.c b/drivers/input/keyboard/mt6779-keypad.c index a05e70af1fd0..19f69d167fbd 100644 --- a/drivers/input/keyboard/mt6779-keypad.c +++ b/drivers/input/keyboard/mt6779-keypad.c @@ -5,6 +5,7 @@ */ #include <linux/bitops.h> #include <linux/clk.h> +#include <linux/input.h> #include <linux/input/matrix_keypad.h> #include <linux/interrupt.h> #include <linux/module.h> |