diff options
author | Simon Glass | 2020-05-10 11:40:05 -0600 |
---|---|---|
committer | Tom Rini | 2020-05-18 21:19:18 -0400 |
commit | f7ae49fc4f363a803dab3be078e93ead8e75a8e9 (patch) | |
tree | a40dc0c2d47875a8b069c8704808e2dc8f9db5fa /cmd | |
parent | 3c7dded8e179ee213c8267c892720b84a7a59fd5 (diff) |
common: Drop log.h from common header
Move this header out of the common header.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/axi.c | 1 | ||||
-rw-r--r-- | cmd/bcb.c | 1 | ||||
-rw-r--r-- | cmd/bmp.c | 1 | ||||
-rw-r--r-- | cmd/booti.c | 1 | ||||
-rw-r--r-- | cmd/bootmenu.c | 1 | ||||
-rw-r--r-- | cmd/bootz.c | 1 | ||||
-rw-r--r-- | cmd/cros_ec.c | 1 | ||||
-rw-r--r-- | cmd/disk.c | 1 | ||||
-rw-r--r-- | cmd/efi.c | 1 | ||||
-rw-r--r-- | cmd/efidebug.c | 1 | ||||
-rw-r--r-- | cmd/elf.c | 1 | ||||
-rw-r--r-- | cmd/flash.c | 1 | ||||
-rw-r--r-- | cmd/fpga.c | 1 | ||||
-rw-r--r-- | cmd/gpio.c | 1 | ||||
-rw-r--r-- | cmd/gpt.c | 1 | ||||
-rw-r--r-- | cmd/i2c.c | 1 | ||||
-rw-r--r-- | cmd/mem.c | 1 | ||||
-rw-r--r-- | cmd/mtdparts.c | 1 | ||||
-rw-r--r-- | cmd/nvedit.c | 1 | ||||
-rw-r--r-- | cmd/pxe_utils.c | 1 | ||||
-rw-r--r-- | cmd/setexpr.c | 1 | ||||
-rw-r--r-- | cmd/sf.c | 1 | ||||
-rw-r--r-- | cmd/source.c | 1 | ||||
-rw-r--r-- | cmd/spl.c | 1 | ||||
-rw-r--r-- | cmd/test.c | 1 | ||||
-rw-r--r-- | cmd/ti/ddr3.c | 1 | ||||
-rw-r--r-- | cmd/tpm_test.c | 1 | ||||
-rw-r--r-- | cmd/tsi148.c | 1 | ||||
-rw-r--r-- | cmd/ubifs.c | 1 |
29 files changed, 29 insertions, 0 deletions
diff --git a/cmd/axi.c b/cmd/axi.c index 18533efc0dd..c9d53c049e8 100644 --- a/cmd/axi.c +++ b/cmd/axi.c @@ -14,6 +14,7 @@ #include <command.h> #include <console.h> #include <dm.h> +#include <log.h> /* Currently selected AXI bus device */ static struct udevice *axi_cur_bus; diff --git a/cmd/bcb.c b/cmd/bcb.c index d99a6980125..e03218066bf 100644 --- a/cmd/bcb.c +++ b/cmd/bcb.c @@ -8,6 +8,7 @@ #include <android_bootloader_message.h> #include <command.h> #include <common.h> +#include <log.h> #include <part.h> enum bcb_cmd { diff --git a/cmd/bmp.c b/cmd/bmp.c index 0ad23231cbe..6040fa5d95d 100644 --- a/cmd/bmp.c +++ b/cmd/bmp.c @@ -15,6 +15,7 @@ #include <gzip.h> #include <image.h> #include <lcd.h> +#include <log.h> #include <malloc.h> #include <mapmem.h> #include <splash.h> diff --git a/cmd/booti.c b/cmd/booti.c index ead23326311..ae379754943 100644 --- a/cmd/booti.c +++ b/cmd/booti.c @@ -10,6 +10,7 @@ #include <image.h> #include <irq_func.h> #include <lmb.h> +#include <log.h> #include <mapmem.h> #include <linux/kernel.h> #include <linux/sizes.h> diff --git a/cmd/bootmenu.c b/cmd/bootmenu.c index 2e3f56e152d..551420de105 100644 --- a/cmd/bootmenu.c +++ b/cmd/bootmenu.c @@ -7,6 +7,7 @@ #include <command.h> #include <ansi.h> #include <env.h> +#include <log.h> #include <menu.h> #include <watchdog.h> #include <malloc.h> diff --git a/cmd/bootz.c b/cmd/bootz.c index ac15856f8df..bc15fd8ec47 100644 --- a/cmd/bootz.c +++ b/cmd/bootz.c @@ -10,6 +10,7 @@ #include <image.h> #include <irq_func.h> #include <lmb.h> +#include <log.h> #include <linux/compiler.h> int __weak bootz_setup(ulong image, ulong *start, ulong *end) diff --git a/cmd/cros_ec.c b/cmd/cros_ec.c index 3c7dd4db9b6..ce1f59a740c 100644 --- a/cmd/cros_ec.c +++ b/cmd/cros_ec.c @@ -11,6 +11,7 @@ #include <cros_ec.h> #include <dm.h> #include <flash.h> +#include <log.h> #include <dm/device-internal.h> #include <dm/uclass-internal.h> diff --git a/cmd/disk.c b/cmd/disk.c index dbd08a06b2f..8060e753ebd 100644 --- a/cmd/disk.c +++ b/cmd/disk.c @@ -8,6 +8,7 @@ #include <command.h> #include <cpu_func.h> #include <image.h> +#include <log.h> #include <part.h> int common_diskboot(struct cmd_tbl *cmdtp, const char *intf, int argc, diff --git a/cmd/efi.c b/cmd/efi.c index c7640c862e9..9aeb913ff37 100644 --- a/cmd/efi.c +++ b/cmd/efi.c @@ -8,6 +8,7 @@ #include <command.h> #include <efi.h> #include <errno.h> +#include <log.h> #include <malloc.h> #include <sort.h> diff --git a/cmd/efidebug.c b/cmd/efidebug.c index 9b5bf1e6cf2..703dab0c20d 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -11,6 +11,7 @@ #include <efi_loader.h> #include <exports.h> #include <hexdump.h> +#include <log.h> #include <malloc.h> #include <mapmem.h> #include <search.h> diff --git a/cmd/elf.c b/cmd/elf.c index 4f2969a6d90..d44b95d9033 100644 --- a/cmd/elf.c +++ b/cmd/elf.c @@ -10,6 +10,7 @@ #include <elf.h> #include <env.h> #include <image.h> +#include <log.h> #include <net.h> #include <vxworks.h> #ifdef CONFIG_X86 diff --git a/cmd/flash.c b/cmd/flash.c index 77979e44129..240871e8089 100644 --- a/cmd/flash.c +++ b/cmd/flash.c @@ -9,6 +9,7 @@ */ #include <common.h> #include <command.h> +#include <log.h> #include <uuid.h> #if defined(CONFIG_CMD_MTDPARTS) diff --git a/cmd/fpga.c b/cmd/fpga.c index 47307bfc895..8ae1c936fbb 100644 --- a/cmd/fpga.c +++ b/cmd/fpga.c @@ -14,6 +14,7 @@ #include <fs.h> #include <gzip.h> #include <image.h> +#include <log.h> #include <malloc.h> static long do_fpga_get_device(char *arg) diff --git a/cmd/gpio.c b/cmd/gpio.c index 24053e6ad98..4fdb3135fc1 100644 --- a/cmd/gpio.c +++ b/cmd/gpio.c @@ -10,6 +10,7 @@ #include <command.h> #include <errno.h> #include <dm.h> +#include <log.h> #include <malloc.h> #include <asm/gpio.h> #include <linux/err.h> diff --git a/cmd/gpt.c b/cmd/gpt.c index 05f5f943a8e..df759416c88 100644 --- a/cmd/gpt.c +++ b/cmd/gpt.c @@ -13,6 +13,7 @@ #include <common.h> #include <blk.h> #include <env.h> +#include <log.h> #include <malloc.h> #include <command.h> #include <part.h> diff --git a/cmd/i2c.c b/cmd/i2c.c index 9ebbdd31284..a51f781a462 100644 --- a/cmd/i2c.c +++ b/cmd/i2c.c @@ -73,6 +73,7 @@ #include <edid.h> #include <errno.h> #include <i2c.h> +#include <log.h> #include <malloc.h> #include <asm/byteorder.h> #include <linux/compiler.h> diff --git a/cmd/mem.c b/cmd/mem.c index ab67a014460..7f7957e74ad 100644 --- a/cmd/mem.c +++ b/cmd/mem.c @@ -18,6 +18,7 @@ #include <console.h> #include <flash.h> #include <hash.h> +#include <log.h> #include <mapmem.h> #include <rand.h> #include <watchdog.h> diff --git a/cmd/mtdparts.c b/cmd/mtdparts.c index 9fca08562b9..5220142b9ab 100644 --- a/cmd/mtdparts.c +++ b/cmd/mtdparts.c @@ -73,6 +73,7 @@ #include <common.h> #include <command.h> #include <env.h> +#include <log.h> #include <malloc.h> #include <jffs2/load_kernel.h> #include <linux/list.h> diff --git a/cmd/nvedit.c b/cmd/nvedit.c index f44651c7271..3784abcd590 100644 --- a/cmd/nvedit.c +++ b/cmd/nvedit.c @@ -29,6 +29,7 @@ #include <console.h> #include <env.h> #include <env_internal.h> +#include <log.h> #include <net.h> #include <search.h> #include <errno.h> diff --git a/cmd/pxe_utils.c b/cmd/pxe_utils.c index ba4bb6347ef..8716e782f6a 100644 --- a/cmd/pxe_utils.c +++ b/cmd/pxe_utils.c @@ -8,6 +8,7 @@ #include <command.h> #include <env.h> #include <image.h> +#include <log.h> #include <malloc.h> #include <mapmem.h> #include <lcd.h> diff --git a/cmd/setexpr.c b/cmd/setexpr.c index 1d81ecfa6a4..770dc24d2b7 100644 --- a/cmd/setexpr.c +++ b/cmd/setexpr.c @@ -12,6 +12,7 @@ #include <config.h> #include <command.h> #include <env.h> +#include <log.h> #include <mapmem.h> static ulong get_arg(char *s, int w) @@ -10,6 +10,7 @@ #include <div64.h> #include <dm.h> #include <flash.h> +#include <log.h> #include <malloc.h> #include <mapmem.h> #include <spi.h> diff --git a/cmd/source.c b/cmd/source.c index cd58924eeba..b6c709a3d25 100644 --- a/cmd/source.c +++ b/cmd/source.c @@ -18,6 +18,7 @@ #include <command.h> #include <env.h> #include <image.h> +#include <log.h> #include <malloc.h> #include <mapmem.h> #include <asm/byteorder.h> diff --git a/cmd/spl.c b/cmd/spl.c index b8e0aa42539..28b40dd31e1 100644 --- a/cmd/spl.c +++ b/cmd/spl.c @@ -9,6 +9,7 @@ #include <cmd_spl.h> #include <env.h> #include <image.h> +#include <log.h> #include <linux/libfdt.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/cmd/test.c b/cmd/test.c index dd49d0e00aa..fa7c48fb9f1 100644 --- a/cmd/test.c +++ b/cmd/test.c @@ -7,6 +7,7 @@ #include <common.h> #include <command.h> #include <fs.h> +#include <log.h> #define OP_INVALID 0 #define OP_NOT 1 diff --git a/cmd/ti/ddr3.c b/cmd/ti/ddr3.c index 756aa9eb3ed..623b63b0f94 100644 --- a/cmd/ti/ddr3.c +++ b/cmd/ti/ddr3.c @@ -8,6 +8,7 @@ #include <cpu_func.h> #include <env.h> #include <init.h> +#include <log.h> #include <asm/arch/hardware.h> #include <asm/cache.h> #include <asm/emif.h> diff --git a/cmd/tpm_test.c b/cmd/tpm_test.c index a6a4636ef6a..ebfb25cab0a 100644 --- a/cmd/tpm_test.c +++ b/cmd/tpm_test.c @@ -6,6 +6,7 @@ #include <common.h> #include <command.h> #include <cpu_func.h> +#include <log.h> #include <tpm-v1.h> #include "tpm-user-utils.h" diff --git a/cmd/tsi148.c b/cmd/tsi148.c index 25f98acdf70..2eae14f87f1 100644 --- a/cmd/tsi148.c +++ b/cmd/tsi148.c @@ -9,6 +9,7 @@ #include <common.h> #include <command.h> +#include <log.h> #include <malloc.h> #include <asm/io.h> #include <pci.h> diff --git a/cmd/ubifs.c b/cmd/ubifs.c index e798b833dd4..a26b653d61e 100644 --- a/cmd/ubifs.c +++ b/cmd/ubifs.c @@ -14,6 +14,7 @@ #include <common.h> #include <config.h> #include <command.h> +#include <log.h> #include <ubifs_uboot.h> static int ubifs_initialized; |