diff options
author | Dmitry Torokhov <[email protected]> | 2023-02-23 22:11:21 -0800 |
---|---|---|
committer | Dmitry Torokhov <[email protected]> | 2023-02-23 22:12:47 -0800 |
commit | 9e03024ce27625e42d3a9a76af37f5369db652cd (patch) | |
tree | 7c0b54992eef2d81325091c452a0dae1391f726b | |
parent | 586dc36226dd748b197eea8642c087cae611129b (diff) |
ARM: spitz: include header defining input event codes
The board file for Sharp SL-Cxx00 Series of PDAs uses various KEY_*
defines, but does not include the relevant header directly and instead
relies on other headers to include it indirectly. With the upcoming
cleanup of matrix_keypad.h this indirection is now broken and we should
include the relevant header directly.
Reported: Guenter Roeck <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Link: https://lore.kernel.org/r/Y/[email protected]
Signed-off-by: Dmitry Torokhov <[email protected]>
-rw-r--r-- | arch/arm/mach-pxa/spitz.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 9964729cd428..75634ef6688d 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c @@ -25,6 +25,7 @@ #include <linux/spi/pxa2xx_spi.h> #include <linux/mtd/sharpsl.h> #include <linux/mtd/physmap.h> +#include <linux/input-event-codes.h> #include <linux/input/matrix_keypad.h> #include <linux/regulator/machine.h> #include <linux/io.h> |