diff options
author | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2022-10-28 09:48:00 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2022-10-28 11:56:17 -0700 |
commit | 80194a13240b39842d46bf639c7d765ad0cb5648 (patch) | |
tree | 2f7cd45bfa3ca5b8c0ffb2aa9f75c35bdccd43b5 | |
parent | 4f494028c7ff4e77173f8f618bcf28dd77803758 (diff) | |
download | lwn-80194a13240b39842d46bf639c7d765ad0cb5648.tar.gz lwn-80194a13240b39842d46bf639c7d765ad0cb5648.zip |
ARM: s3c64xx: include header defining input event codes
The board file for Wolfson Cragganmore 6410 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-by: kernel test robot <lkp@intel.com>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/Y1wHwEm15/K87tdq@google.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r-- | arch/arm/mach-s3c/mach-crag6410.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c/mach-crag6410.c b/arch/arm/mach-s3c/mach-crag6410.c index 9a45474d1bf7..2ecb85856e24 100644 --- a/arch/arm/mach-s3c/mach-crag6410.c +++ b/arch/arm/mach-s3c/mach-crag6410.c @@ -14,6 +14,7 @@ #include <linux/fb.h> #include <linux/io.h> #include <linux/init.h> +#include <linux/input-event-codes.h> #include <linux/gpio.h> #include <linux/gpio/machine.h> #include <linux/leds.h> |