]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
input: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Thu, 2 May 2024 01:30:53 +0000 (19:30 -0600)
committerTom Rini <trini@konsulko.com>
Tue, 7 May 2024 14:00:55 +0000 (08:00 -0600)
Remove <common.h> from this driver directory and when needed
add missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/input/apple_spi_kbd.c
drivers/input/button_kbd.c
drivers/input/cros_ec_keyb.c
drivers/input/i8042.c
drivers/input/input.c
drivers/input/key_matrix.c
drivers/input/keyboard-uclass.c
drivers/input/tegra-kbc.c

index 7cf12f453a30d1c161bd47b3320203413a7085cf..5b30cec2dcb9874001c98e97ffe666d4d6026bc2 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2021 Mark Kettenis <kettenis@openbsd.org>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <keyboard.h>
 #include <spi.h>
index c73d3b18be9c6a1e1afb8a41178e50d0f76e07a4..0a917ac8b9957be36c09b76330b1c000728540e4 100644 (file)
@@ -4,7 +4,6 @@
  */
 
 #include <stdlib.h>
-#include <common.h>
 #include <dm.h>
 #include <fdtdec.h>
 #include <input.h>
index c4853463739b19814c24b9ac53759312c2b9cee2..0917ee20fedc76cc22990de667d3ff6b76c6bedc 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (c) 2012 The Chromium OS Authors.
  */
 
-#include <common.h>
 #include <cros_ec.h>
 #include <dm.h>
 #include <errno.h>
index e6070ca015296b29d618e31fb123669786f2d5e8..9bf21053cf064e586020a8c11e0be63f384ee371 100644 (file)
@@ -8,7 +8,6 @@
 
 #define LOG_CATEGORY UCLASS_KEYBOARD
 
-#include <common.h>
 #include <dm.h>
 #include <env.h>
 #include <errno.h>
index 8a6506e7c6f9f237386861ae5ec5ec60f379b292..3f146fb07e6d59abb45452099a15a1bc03c5f7d4 100644 (file)
@@ -6,13 +6,13 @@
  * (C) Copyright 2004 DENX Software Engineering, Wolfgang Denk, wd@denx.de
  */
 
-#include <common.h>
 #include <console.h>
 #include <dm.h>
 #include <env.h>
 #include <errno.h>
 #include <log.h>
 #include <stdio_dev.h>
+#include <time.h>
 #include <input.h>
 #ifdef CONFIG_DM_KEYBOARD
 #include <keyboard.h>
index e2fb2e1707875af4bd2fff23391426689fe7b953..2e631660c880d58d5aa771db9065b3444b62ae83 100644 (file)
@@ -6,7 +6,6 @@
  * (C) Copyright 2004 DENX Software Engineering, Wolfgang Denk, wd@denx.de
  */
 
-#include <common.h>
 #include <dm.h>
 #include <key_matrix.h>
 #include <log.h>
index aefc8e825e207749cf10eb9d8fb636c730a3b01d..df9ee8f7d659b304540a29f563af52038965d62f 100644 (file)
@@ -5,7 +5,6 @@
 
 #define LOG_CATEGORY UCLASS_KEYBOARD
 
-#include <common.h>
 #include <dm.h>
 #include <keyboard.h>
 #include <log.h>
index d4741a76663eab3ddcbea91402b59a981204a129..fc13975d4f0f496ca1f242c345851bfb4b1d602a 100644 (file)
@@ -4,7 +4,6 @@
  *  NVIDIA Corporation <www.nvidia.com>
  */
 
-#include <common.h>
 #include <dm.h>
 #include <fdtdec.h>
 #include <input.h>
@@ -13,6 +12,7 @@
 #include <log.h>
 #include <stdio_dev.h>
 #include <tegra-kbc.h>
+#include <time.h>
 #include <asm/io.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/funcmux.h>