]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: Audit config.h and common.h usage
authorTom Rini <trini@konsulko.com>
Thu, 14 Dec 2023 18:16:46 +0000 (13:16 -0500)
committerTom Rini <trini@konsulko.com>
Thu, 21 Dec 2023 13:54:37 +0000 (08:54 -0500)
Remove and replace common.h and config.h in sandbox when it's not needed
and add some explicit includes where needed.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
13 files changed:
arch/sandbox/cpu/cache.c
arch/sandbox/cpu/cpu.c
arch/sandbox/cpu/sdl.c
arch/sandbox/cpu/spl.c
arch/sandbox/cpu/start.c
arch/sandbox/cpu/state.c
arch/sandbox/include/asm/io.h
arch/sandbox/include/asm/state.h
arch/sandbox/lib/bootm.c
arch/sandbox/lib/fdt_fixup.c
arch/sandbox/lib/interrupts.c
arch/sandbox/lib/pci_io.c
board/sandbox/sandbox.c

index 46c62c0b4461efb6b4b584cf7d721715be4cf58a..c8a5e64214b637f10fa89923a1222a891a3956bd 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
  */
 
-#include <common.h>
 #include <cpu_func.h>
 #include <asm/state.h>
 
index a1c5c7c4311a0640d2845d1aa0303d0014d9b99b..d6475c969c4d8c723a3fd5625901540e3e774540 100644 (file)
@@ -5,7 +5,6 @@
 
 #define LOG_CATEGORY   LOGC_SANDBOX
 
-#include <common.h>
 #include <bootstage.h>
 #include <cpu_func.h>
 #include <errno.h>
index 590e406517bfe113506439cb7cecfae6704e0cf9..ed84646bdab711c06503bc10da6d8bcfa623eea7 100644 (file)
@@ -72,7 +72,7 @@ static struct sdl_info {
 static void sandbox_sdl_poll_events(void)
 {
        /*
-        * We don't want to include common.h in this file since it uses
+        * We don't want to include cpu_func.h in this file since it uses
         * system headers. So add a declation here.
         */
        extern void reset_cpu(void);
index 16b766279833fe3d5f820459356d03ec71927875..9ad9da686c6ab02d281af87f6402052e92238e64 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2016 Google, Inc
  */
 
-#include <common.h>
 #include <dm.h>
 #include <hang.h>
 #include <handoff.h>
index 2589c2eba73875809382480f988a9076a013245b..dce804165296d982a418c6fe7988045a672fdbab 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright (c) 2011-2012 The Chromium OS Authors.
  */
 
-#include <common.h>
+#include <config.h>
 #include <cli.h>
 #include <command.h>
 #include <efi_loader.h>
index e38bb248b7ff938a51222966d501f807ecc9c6db..a9ca79e76d2db815f9d60c539a5ea95d403a256b 100644 (file)
@@ -3,9 +3,8 @@
  * Copyright (c) 2011-2012 The Chromium OS Authors.
  */
 
-#include <common.h>
-#include <autoboot.h>
 #include <bloblist.h>
+#include <config.h>
 #include <errno.h>
 #include <fdtdec.h>
 #include <log.h>
index 77a02e5f5241fb8f5f7fe5328fbf9f49a3f6c2e6..3c0a102697ec70ae40818f5a25946b6551b68a38 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef __SANDBOX_ASM_IO_H
 #define __SANDBOX_ASM_IO_H
 
+#include <linux/types.h>
+
 enum sandboxio_size_t {
        SB_SIZE_8,
        SB_SIZE_16,
index 59a20595f51d2e3ca2b87de79ecb5f3c95c0acc6..c84a1f7060f47752941a2ed9704fe660a445ed57 100644 (file)
@@ -6,7 +6,6 @@
 #ifndef __SANDBOX_STATE_H
 #define __SANDBOX_STATE_H
 
-#include <config.h>
 #include <sysreset.h>
 #include <stdbool.h>
 #include <linux/list.h>
index a748ba650b128211fb8520c8ba1d0ff96543caa8..290db4521702a000495c048c2422db6384d4c675 100644 (file)
@@ -4,7 +4,6 @@
  * Copyright (c) 2015 Sjoerd Simons <sjoerd.simons@collabora.co.uk>
  */
 
-#include <common.h>
 #include <bootstage.h>
 #include <image.h>
 #include <asm/io.h>
index a646f2059c2ce81dcf74ed82a28aa4cc7ec0688f..e333bd52ea28f0b497999def1e46e5e542a74c20 100644 (file)
@@ -2,7 +2,6 @@
 
 #define LOG_CATEGORY LOGC_ARCH
 
-#include <common.h>
 #include <fdt_support.h>
 #include <log.h>
 
index 4d7cbff802c63a15ccb5ed0ca065d1e9bf1f3482..3f6583e11f049fa152a1e624f85bf2c6b59b052c 100644 (file)
@@ -5,7 +5,6 @@
  * found in the LICENSE file.
  */
 
-#include <common.h>
 #include <efi_loader.h>
 #include <irq_func.h>
 #include <os.h>
index 2038141947ab7b7adbb7ac0cc898b3f1b6521c4a..6040eacb594f42efd4a095b083466b7cc298b13d 100644 (file)
@@ -8,7 +8,6 @@
  * IO space access commands.
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index 9d58860451c55bc6286953859e1b5e5affa9da21..802596569c6410838ed1958bf31a75f732c9acda 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright (c) 2011 The Chromium OS Authors.
  */
 
-#include <common.h>
 #include <addr_map.h>
+#include <config.h>
 #include <cpu_func.h>
 #include <cros_ec.h>
 #include <dm.h>