]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: Remove <common.h> and add needed includes
authorTom Rini <trini@konsulko.com>
Sat, 27 Apr 2024 14:10:59 +0000 (08:10 -0600)
committerTom Rini <trini@konsulko.com>
Mon, 6 May 2024 21:05:04 +0000 (15:05 -0600)
Remove <common.h> from all "cmd/" files and when needed add
missing include files directly.

Signed-off-by: Tom Rini <trini@konsulko.com>
205 files changed:
cmd/2048.c
cmd/ab_select.c
cmd/abootimg.c
cmd/acpi.c
cmd/adc.c
cmd/addrmap.c
cmd/adtimg.c
cmd/aes.c
cmd/arm/exception64.c
cmd/armffa.c
cmd/armflash.c
cmd/axi.c
cmd/bcb.c
cmd/bdinfo.c
cmd/bind.c
cmd/binop.c
cmd/blk_common.c
cmd/blkcache.c
cmd/blkmap.c
cmd/blob.c
cmd/bloblist.c
cmd/bmp.c
cmd/boot.c
cmd/bootcount.c
cmd/bootdev.c
cmd/bootflow.c
cmd/booti.c
cmd/bootm.c
cmd/bootmenu.c
cmd/bootmeth.c
cmd/bootstage.c
cmd/bootz.c
cmd/broadcom/chimp_boot.c
cmd/broadcom/chimp_handshake.c
cmd/broadcom/nitro_image_load.c
cmd/btrfs.c
cmd/button.c
cmd/cache.c
cmd/cat.c
cmd/cbfs.c
cmd/cedit.c
cmd/clk.c
cmd/clone.c
cmd/cls.c
cmd/config.c
cmd/conitrace.c
cmd/console.c
cmd/cpu.c
cmd/cramfs.c
cmd/cros_ec.c
cmd/cyclic.c
cmd/date.c
cmd/demo.c
cmd/dfu.c
cmd/diag.c
cmd/disk.c
cmd/dm.c
cmd/echo.c
cmd/eeprom.c
cmd/efi.c
cmd/efi_common.c
cmd/eficonfig.c
cmd/eficonfig_sbkey.c
cmd/efidebug.c
cmd/elf.c
cmd/ethsw.c
cmd/event.c
cmd/exit.c
cmd/ext2.c
cmd/ext4.c
cmd/extension_board.c
cmd/fastboot.c
cmd/fat.c
cmd/fdt.c
cmd/flash.c
cmd/font.c
cmd/fpga.c
cmd/fpgad.c
cmd/fs.c
cmd/fs_uuid.c
cmd/fuse.c
cmd/gettime.c
cmd/gpio.c
cmd/gpt.c
cmd/hash.c
cmd/help.c
cmd/history.c
cmd/host.c
cmd/i2c.c
cmd/ide.c
cmd/ini.c
cmd/io.c
cmd/iotrace.c
cmd/irq.c
cmd/itest.c
cmd/jffs2.c
cmd/kaslrseed.c
cmd/led.c
cmd/legacy-mtd-utils.c
cmd/legacy_led.c
cmd/license.c
cmd/load.c
cmd/log.c
cmd/lsblk.c
cmd/lzmadec.c
cmd/mbr.c
cmd/mdio.c
cmd/mem.c
cmd/meson/sm.c
cmd/mii.c
cmd/misc.c
cmd/mmc.c
cmd/mp.c
cmd/mtd.c
cmd/mtdparts.c
cmd/mux.c
cmd/mvebu/bubt.c
cmd/mvebu/comphy_rx_training.c
cmd/nand.c
cmd/net.c
cmd/nvedit.c
cmd/nvedit_efi.c
cmd/nvme.c
cmd/onenand.c
cmd/optee_rpmb.c
cmd/osd.c
cmd/panic.c
cmd/part.c
cmd/pcap.c
cmd/pci.c
cmd/pci_mps.c
cmd/pinmux.c
cmd/pmc.c
cmd/pmic.c
cmd/printf.c
cmd/pvblock.c
cmd/pxe.c
cmd/qfw.c
cmd/read.c
cmd/reginfo.c
cmd/regulator.c
cmd/remoteproc.c
cmd/riscv/sbi.c
cmd/rkmtd.c
cmd/rng.c
cmd/rockusb.c
cmd/rtc.c
cmd/sata.c
cmd/sb.c
cmd/scp03.c
cmd/scsi.c
cmd/seama.c
cmd/setexpr.c
cmd/sf.c
cmd/sha1sum.c
cmd/sleep.c
cmd/smccc.c
cmd/sound.c
cmd/source.c
cmd/spi.c
cmd/spl.c
cmd/stackprot_test.c
cmd/strings.c
cmd/sysboot.c
cmd/temperature.c
cmd/terminal.c
cmd/test.c
cmd/thordown.c
cmd/ti/ddr3.c
cmd/ti/pd.c
cmd/time.c
cmd/timer.c
cmd/tlv_eeprom.c
cmd/tpm-common.c
cmd/tpm-v1.c
cmd/tpm-v2.c
cmd/tpm_test.c
cmd/trace.c
cmd/tsi148.c
cmd/ubi.c
cmd/ubifs.c
cmd/ufs.c
cmd/universe.c
cmd/unlz4.c
cmd/unzip.c
cmd/usb.c
cmd/usb_gadget_sdp.c
cmd/usb_mass_storage.c
cmd/vbe.c
cmd/version.c
cmd/video.c
cmd/virtio.c
cmd/w1.c
cmd/wdt.c
cmd/wol.c
cmd/x86/cbsysinfo.c
cmd/x86/fsp.c
cmd/x86/hob.c
cmd/x86/mtrr.c
cmd/ximg.c
cmd/xxd.c
cmd/yaffs2.c
cmd/zfs.c
cmd/zip.c
include/android_ab.h

index fa60aa94aad81a0e35e154fb4958df76176db829..42cd171b0e41708606c9d7bffd0585f7770ffbdc 100644 (file)
@@ -3,10 +3,10 @@
 
 /* Console version of the game "2048" for GNU/Linux */
 
-#include <common.h>
 #include <cli.h>
 #include <command.h>
 #include <rand.h>
+#include <vsprintf.h>
 #include <linux/delay.h>
 
 #define SIZE 4
index bfb67b8236b62b56a81869fcebe46dd13fdcb60c..faeb83816e58293967c69c1ad0f4b543d3fd73d4 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2017 The Android Open Source Project
  */
 
-#include <common.h>
 #include <android_ab.h>
 #include <command.h>
 #include <env.h>
index 2653b555b10a07d89192536f300524072213b8f4..88c77d999290d12fa46b36383a35519130a19001 100644 (file)
@@ -5,7 +5,6 @@
  */
 
 #include <android_image.h>
-#include <common.h>
 #include <command.h>
 #include <image.h>
 #include <mapmem.h>
index 928e5dc525e6400788e70c409e123bd8386dd572..094d9d4e85865ec30e4db6ba95e0b39abce4669d 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2019 Google LLC
  * Written by Simon Glass <sjg@chromium.org>
  */
-#include <common.h>
 #include <command.h>
 #include <display_options.h>
 #include <log.h>
@@ -11,6 +10,7 @@
 #include <acpi/acpi_table.h>
 #include <asm/acpi_table.h>
 #include <asm/global_data.h>
+#include <linux/errno.h>
 #include <dm/acpi.h>
 
 DECLARE_GLOBAL_DATA_PTR;
index 4cb18b66d4aad3234b3a7b64a0e2546874e0b714..f87f9785a114a46dde98d6b860af5ef51fec52f8 100644 (file)
--- a/cmd/adc.c
+++ b/cmd/adc.c
@@ -3,7 +3,6 @@
  * Copyright (C) 2018 BayLibre, SAS
  * Author: Neil Armstrong <narmstrong@baylibre.com>
  */
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <adc.h>
index bd23549f3a5f56512b0ef5ce588d66eb152a2503..f7e4d9206de5cc70b70b2f3f55c9d3130e1220a6 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2021, Bin Meng <bmeng.cn@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <addr_map.h>
 
index f4b5cbf35b97e64b252f31b8e74588179292d371..53f33764fbe8e0088c436fd8fd3e0652bc034c5c 100644 (file)
@@ -7,8 +7,8 @@
 
 #include <command.h>
 #include <env.h>
+#include <vsprintf.h>
 #include <image-android-dt.h>
-#include <common.h>
 
 #define OPT_INDEX      "--index"
 
index 1264675aa01f48b9c120e93175d59e887dd2ce4d..87ad1ab82b9987f8d7e7af19b184f16639829a03 100644 (file)
--- a/cmd/aes.c
+++ b/cmd/aes.c
@@ -5,13 +5,13 @@
  * Command for en/de-crypting block of memory with AES-[128/192/256]-CBC cipher.
  */
 
-#include <common.h>
 #include <command.h>
 #include <uboot_aes.h>
 #include <malloc.h>
 #include <asm/byteorder.h>
 #include <linux/compiler.h>
 #include <mapmem.h>
+#include <vsprintf.h>
 
 u32 aes_get_key_len(char *command)
 {
index 589a23115b0481f8167fc93c71cc4b5fcb2c6f52..73d6c20ccaceef4f153322b5f43ed87ea237f8c8 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (c) 2018, Heinrich Schuchardt <xypron.glpk@gmx.de>
  */
 
-#include <common.h>
 #include <command.h>
 #include <linux/bitops.h>
 
index 9585150b9627c975b224a39641a60e4e48b8d0f3..181e31bc49adee5abb95983e716c2fa417fb48eb 100644 (file)
@@ -5,7 +5,6 @@
  * Authors:
  *   Abdellatif El Khlifi <abdellatif.elkhlifi@arm.com>
  */
-#include <common.h>
 #include <arm_ffa.h>
 #include <command.h>
 #include <dm.h>
index fdaea5ad811d2cb8283cd75559e352d5debec9fa..e292cf85c45dc17eebcc353541f19e47213e7d71 100644 (file)
@@ -5,10 +5,10 @@
  *
  * Support for ARM Flash Partitions
  */
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <flash.h>
+#include <vsprintf.h>
 #include <asm/io.h>
 
 #define MAX_REGIONS 4
index 5620891db28b1488e2480a590343e0756f73ee25..3dbea0499deea8639f85f96eee44172aa8b19ebd 100644 (file)
--- a/cmd/axi.c
+++ b/cmd/axi.c
@@ -9,7 +9,6 @@
  * SPDX-License-Identifier:    GPL-2.0+
  */
 
-#include <common.h>
 #include <axi.h>
 #include <command.h>
 #include <console.h>
index f3b92564d10bb0040b208ccbc1dcd9991d46c35d..fe6d6cb2c3815b9c6980d10f3c1b10ef4a194033 100644 (file)
--- a/cmd/bcb.c
+++ b/cmd/bcb.c
@@ -8,12 +8,12 @@
 #include <android_bootloader_message.h>
 #include <bcb.h>
 #include <command.h>
-#include <common.h>
 #include <display_options.h>
 #include <log.h>
 #include <part.h>
 #include <malloc.h>
 #include <memalign.h>
+#include <vsprintf.h>
 #include <linux/err.h>
 
 enum bcb_cmd {
index 79106caeec2e2c0a117e7407f495f1a55617e672..437ac4e86309c0d9d0877f6d2f26d68549167f75 100644 (file)
@@ -6,7 +6,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <env.h>
index be0d4d2a7115806efb02e920a15a5ba58d9d57cf..3a59eefd5c58bc059ba26d62e532d45097de0216 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2018 JJ Hiblot <jjhiblot@ti.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <dm/device-internal.h>
index 592e9146901bceeffc623560622011e19b733ebc..10d91b5dbf2ee9dc8f946becbb054c2a4b71f03a 100644 (file)
@@ -1,11 +1,11 @@
 // SPDX-License-Identifier: GPL-2.0+
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <hexdump.h>
 #include <malloc.h>
 #include <mapmem.h>
+#include <vsprintf.h>
 #include <linux/ctype.h>
 
 enum {
index 02ac92837b6cf33e992d31c04acd0a9fdcd44a04..4c05a4e0610e0bf5c32c1105317bae274b3a7d96 100644 (file)
@@ -8,10 +8,10 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <mapmem.h>
+#include <vsprintf.h>
 
 int blk_common_cmd(int argc, char *const argv[], enum uclass_id uclass_id,
                   int *cur_devnump)
index 1456654df6f5a0e313f13c0e340b74aaead9b5c1..dbd03df14dcf9e61fd574a988f029cfc4cc98468 100644 (file)
@@ -6,9 +6,9 @@
  */
 #include <command.h>
 #include <config.h>
-#include <common.h>
 #include <malloc.h>
 #include <part.h>
+#include <vsprintf.h>
 
 static int blkc_show(struct cmd_tbl *cmdtp, int flag,
                     int argc, char *const argv[])
index ef74ebc0036ce8b3d2314eedf491ce03b1aca42f..164f80f1387d5f86f061fed1f92fe6ffcbfdc9a7 100644 (file)
@@ -6,7 +6,6 @@
 
 #include <blk.h>
 #include <blkmap.h>
-#include <common.h>
 #include <command.h>
 #include <malloc.h>
 #include <dm/device.h>
index 7c77c410d5284e87d86e4227f4ac42a34241889d..a3c1dc49224d00f5616c7bc0f639ba19bb0b2743 100644 (file)
@@ -4,9 +4,9 @@
  * Command for encapsulating/decapsulating blob of memory.
  */
 
-#include <common.h>
 #include <command.h>
 #include <malloc.h>
+#include <vsprintf.h>
 #include <asm/byteorder.h>
 #include <linux/compiler.h>
 #if defined(CONFIG_ARCH_MX6) || defined(CONFIG_ARCH_MX7) || \
index 26548ecf847e72e0fc9418073b9323e512f3d17f..333ae558142c9efe9003e7ee89a91384fc4b727e 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <bloblist.h>
 #include <command.h>
 #include <asm/global_data.h>
index 8f43a40dafdd430e36e1e19764982848037e8094..3b61844862450743167fbe5d1e3769361bcfa873 100644 (file)
--- a/cmd/bmp.c
+++ b/cmd/bmp.c
@@ -8,7 +8,6 @@
  * BMP handling routines
  */
 
-#include <common.h>
 #include <command.h>
 #include <image.h>
 #include <mapmem.h>
index 14839c1cedcc691e00a7359a456075caecee1458..23496cafdf5cbd4cd0e218d823491edbdb215375 100644 (file)
@@ -7,9 +7,9 @@
 /*
  * Misc boot support
  */
-#include <common.h>
 #include <command.h>
 #include <net.h>
+#include <vsprintf.h>
 
 #ifdef CONFIG_CMD_GO
 
index 30ce5dba30d9bd69efdf3ce182e19e0d7e5228c0..5e3b66e676b83ef2a6b371f3a38a0e0ad8c802c3 100644 (file)
@@ -1,6 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0+
 
-#include <common.h>
 #include <command.h>
 #include <bootcount.h>
 
index 471189cda4808c23f7b7a427addac83d9e613204..fa7285ba25e1c04663b76fd2e8cd85ee9c95e27b 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <bootdev.h>
 #include <bootflow.h>
 #include <bootstd.h>
index be5d7d8e743aaf485682ce0b35e06c021782cebc..1588f277a4a0af78ddfe85ac972422c05754f9e4 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <bootdev.h>
 #include <bootflow.h>
 #include <bootm.h>
index b9637b3ec3d8de93f51bdd09ce295383fbaa4617..62b19e83436659da68e34cc05ece5cf8d2e3dbbb 100644 (file)
@@ -4,7 +4,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <bootm.h>
 #include <command.h>
 #include <image.h>
index 9737a2d28c034881dca61192bd1eeb0d30efc41f..545b0c3d8235790302c72d33d9f3d0949a9191cc 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * Boot support
  */
-#include <common.h>
 #include <bootm.h>
 #include <command.h>
 #include <env.h>
index 78184fccab25d34bc2de50302485afe197e5b4b4..977a04b7d7697f56cf49a4b03f91f2449d956346 100644 (file)
@@ -5,7 +5,6 @@
 
 #include <charset.h>
 #include <cli.h>
-#include <common.h>
 #include <command.h>
 #include <ansi.h>
 #include <efi_config.h>
index f5b01343c48ca4d0a38924f1d786919a29adcb4c..ebf8b7e2530fb6a8eca5b70e46404da435d9d614 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <bootdev.h>
 #include <bootmeth.h>
 #include <bootstd.h>
index 77a4bc66ff43fd6e43c95545210d634b9f109034..5246924f39a4c6152e8b979c215c6ca8667734e1 100644 (file)
@@ -3,9 +3,9 @@
  * Copyright (c) 2012, Google Inc. All rights reserved.
  */
 
-#include <common.h>
 #include <bootstage.h>
 #include <command.h>
+#include <vsprintf.h>
 
 static int do_bootstage_report(struct cmd_tbl *cmdtp, int flag, int argc,
                               char *const argv[])
index b6bb4aae72d4468e886ce1f544605dc82a50058d..55837a7599b921cdc7577236c152af82ca38efe3 100644 (file)
@@ -4,7 +4,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <bootm.h>
 #include <command.h>
 #include <image.h>
index 16f2b612c4db67a049ffbe76dd0053406746e26b..ae0a81179d0a2d4b77925c1c01556f11028fb8c2 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2020 Broadcom
  */
 
-#include <common.h>
 #include <command.h>
 #include <broadcom/chimp.h>
 
index a90a73a6d749077628a11ee6c3bea5e625146d28..e274267196362759cc7638934bfa4fdd30a524bb 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright 2020 Broadcom
  */
 
-#include <common.h>
 #include <command.h>
 #include <broadcom/chimp.h>
 
index 93b5cb4cebe6547d606f80e2fcd051e0def6a155..289b184e9afdcbbb79f683ce9e4f6b50c761f003 100644 (file)
@@ -3,8 +3,8 @@
  * Copyright 2020 Broadcom
  */
 
-#include <common.h>
 #include <command.h>
+#include <vsprintf.h>
 
 #define FW_IMAGE_SIG   0xff123456
 #define CFG_IMAGE_SIG  0xcf54321a
index 2843835d08b80710f1de6820c3402c3e15be90f9..69d1b1f830d5dda72ea174d7ae590d135b8fe320 100644 (file)
@@ -3,7 +3,6 @@
  * 2017 by Marek Behún <kabel@kernel.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <btrfs.h>
 #include <fs.h>
index 1b45d0a2a035c61bcecb6951ab166a2b191ed727..3e6db3f5b8eb5cef87031b399eae51d7a55466a6 100644 (file)
@@ -5,7 +5,6 @@
  * Based on led.c
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <button.h>
index b68d45b98bf2dab35f2c2904a8c4d1df6074417a..0254ff17f9b242f7e8e63058f90f3529b186e455 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * Cache support: switch on or off, get status
  */
-#include <common.h>
 #include <command.h>
 #include <cpu_func.h>
 #include <linux/compiler.h>
index 18aa6ca7aa67f3d2c4fa4af2696dfd723e790cda..6828b7b364e5a2ad4269d347d034aed915d015da 100644 (file)
--- a/cmd/cat.c
+++ b/cmd/cat.c
@@ -4,7 +4,6 @@
  * Roger Knecht <rknecht@pm.de>
  */
 
-#include <common.h>
 #include <command.h>
 #include <fs.h>
 #include <malloc.h>
index 3cfc9eb272706af72d5a9816da58dcba4d74f8fe..c1035461df1582cbee548424c06ba9478ca24807 100644 (file)
@@ -6,10 +6,10 @@
 /*
  * CBFS commands
  */
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <cbfs.h>
+#include <vsprintf.h>
 
 static int do_cbfs_init(struct cmd_tbl *cmdtp, int flag, int argc,
                        char *const argv[])
index 6352e6369d1e32543239dac8713cc39ddc3723af..fec67a8e334980b3aa7b8e6253cbab5f8a994faa 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <abuf.h>
 #include <cedit.h>
 #include <command.h>
index 7bbcbfeda332d65446cdab5fe79c59a4b27f24c3..6fda6efb1cea1533a62649e63746b992df249cbd 100644 (file)
--- a/cmd/clk.c
+++ b/cmd/clk.c
@@ -2,7 +2,6 @@
 /*
  * Copyright (C) 2013 Xilinx, Inc.
  */
-#include <common.h>
 #include <command.h>
 #include <clk.h>
 #if defined(CONFIG_DM) && defined(CONFIG_CLK)
index a906207757127329d49e0e553d51a990282ef7b0..1f3cff1836d1aee31d14f228ed50b8ea64dea5f6 100644 (file)
@@ -4,11 +4,11 @@
  *
  */
 
-#include <common.h>
 #include <command.h>
 #include <malloc.h>
 #include <part.h>
 #include <blk.h>
+#include <time.h>
 #include <vsprintf.h>
 
 #define BUFSIZE (1 * 1024 * 1024)
index 80d0558d46791008fc49ac351d09492bf459cc5a..4bee8a18305c0c3f41012a7262c1ac1bc0567d53 100644 (file)
--- a/cmd/cls.c
+++ b/cmd/cls.c
@@ -5,7 +5,6 @@
  *
  * cls - clear screen command
  */
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <dm.h>
index cf30841a35947e141aa2741a0f6f778cdc82979e..f0d2033c61f4a7c31c40b7924589f88872f6162d 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2017 Masahiro Yamada <yamada.masahiro@socionext.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <gzip.h>
 #include <malloc.h>
index 9a1bc35184852e1a7c89e587d62ba722531432fa..6cc113328ebc85fac20790580e129503065b5694 100644 (file)
@@ -5,7 +5,6 @@
  *
  * Copyright (c) 2018, Heinrich Schuchardt <xypron.glpk@gmx.de>
  */
-#include <common.h>
 #include <command.h>
 #include <linux/delay.h>
 
index 58c2cf1c8943e177bc47201c39073b03d17b00d9..12fc92061a1905c2bf10b8935a19f58adbd58cd4 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * Boot support
  */
-#include <common.h>
 #include <command.h>
 #include <iomux.h>
 #include <stdio_dev.h>
index 245a82fa3eb4e920b4abb7a1125fdea528c07e1c..9e323069b9e8652f0291201052ffb24625f69747 100644 (file)
--- a/cmd/cpu.c
+++ b/cmd/cpu.c
@@ -5,7 +5,6 @@
  * Copyright (c) 2017 Álvaro Fernández Rojas <noltari@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <cpu.h>
 #include <display_options.h>
index 57e2afa2472bed29a1b786418b829dcaae0cbdce..b57e281592614e25af6adbda1453b602959ae96b 100644 (file)
@@ -10,7 +10,6 @@
 /*
  * CRAMFS support
  */
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <image.h>
index 90921cecf602f93637e02ba2eb75c0c0b3f9d573..7b60e415b6c9ee9a46c9a73d39985ffc78e3c1fb 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (c) 2016 National Instruments Corp
  */
 
-#include <common.h>
 #include <command.h>
 #include <cros_ec.h>
 #include <dm.h>
index ad7fc3b975e1daf7d19e88523ef860681bb0a41f..40e966de9aa537c5565f4df44c29fdfc69e4a772 100644 (file)
@@ -8,11 +8,12 @@
  * Copyright (C) 2022 Stefan Roese <sr@denx.de>
  */
 
-#include <common.h>
 #include <command.h>
 #include <cyclic.h>
 #include <div64.h>
 #include <malloc.h>
+#include <time.h>
+#include <vsprintf.h>
 #include <linux/delay.h>
 
 struct cyclic_demo_info {
index 4f98b470ca2e6a3de267a0313f454ee5e317557d..755adec1e71e9dfe6d31ce243392989b31a295b2 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * RTC, Date & Time support: get and set date & time
  */
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <rtc.h>
index ebd5a241c362c63ce813337df33aa353ec04ef8e..5c422ac165bd7cb3bd3beb5971cc046f931878aa 100644 (file)
@@ -6,7 +6,6 @@
  * Pavel Herrmann <morpheus.ibis@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <dm-demo.h>
index d7bfb535dc68f9628f5ea7a85f56d7fcd580d60e..46f0190588e05b160c2eb3071ab8e229e512c77d 100644 (file)
--- a/cmd/dfu.c
+++ b/cmd/dfu.c
@@ -10,7 +10,6 @@
  *         Lukasz Majewski <l.majewski@samsung.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <watchdog.h>
 #include <dfu.h>
index f51536dbfaaf84bdfe4639dde9bc6ed77fe44469..c6da5aae3fcd9aeba2e62144ace249bf26d63f6a 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * Diagnostics support
  */
-#include <common.h>
 #include <command.h>
 #include <post.h>
 
index 92eaa02f4a1312d2ea83cb39211939b00d27c435..2efc3ca4b1a2fb1ea6e2b1947192c586aaf384e4 100644 (file)
@@ -3,7 +3,6 @@
  * (C) Copyright 2000-2011
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
-#include <common.h>
 #include <bootstage.h>
 #include <command.h>
 #include <cpu_func.h>
index fb605c2da1a89e6b43850bc8cc620adf0b5ffbeb..ec9cfd85376e3f62a836b677b3ac1818559da2de 100644 (file)
--- a/cmd/dm.c
+++ b/cmd/dm.c
@@ -6,7 +6,6 @@
  * Marek Vasut <marex@denx.de>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm/root.h>
 #include <dm/util.h>
index fda844ee9d3524ebeac6d60769cbefa3c7649e52..973213a03a66b57af5172e470a095b0e94f58e51 100644 (file)
@@ -4,7 +4,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 
 static int do_echo(struct cmd_tbl *cmdtp, int flag, int argc,
index 322765ad02a013b1c5dff318f1f4285207f9714a..26f3750a80adb02ec26fb3af6e82ee3bb357e99b 100644 (file)
  *
  */
 
-#include <common.h>
 #include <config.h>
 #include <command.h>
 #include <eeprom.h>
 #include <i2c.h>
 #include <eeprom_layout.h>
+#include <vsprintf.h>
 #include <linux/delay.h>
 
 #ifndef        I2C_RXTX_LEN
index 6cd5361aca59e2ec120c3ef006545f50c195e55b..6bed2d743ba6ebe2cefa00abfa2a08b0e3d287ba 100644 (file)
--- a/cmd/efi.c
+++ b/cmd/efi.c
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <efi.h>
 #include <efi_api.h>
index 1aa2351fcdfde8435f6614066e24798a5b7904dc..c46764e6eea74258aafebd031255a0f91a801795 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <efi.h>
 #include <efi_api.h>
 #include <uuid.h>
index 0ba92c60e0392215f37a0981a4aeea24c78e1e98..4164cb4f9b80bedadb8460c50dfd2559a14fe56a 100644 (file)
@@ -7,7 +7,6 @@
 
 #include <ansi.h>
 #include <cli.h>
-#include <common.h>
 #include <charset.h>
 #include <efi_loader.h>
 #include <efi_load_initrd.h>
index caca27495e02833cd1cdeea5eaba244f6d52339a..b3325a540f9a16ec626573a60d150b6ba54312e1 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <ansi.h>
-#include <common.h>
 #include <charset.h>
 #include <hexdump.h>
 #include <log.h>
index c2c525f2351744ce44f46ac47768505dc84b08c3..e978e74aad9c0475dd90dee38092d39c8b0054b8 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <charset.h>
-#include <common.h>
 #include <command.h>
 #include <dm/device.h>
 #include <efi_dt_fixup.h>
index df4354d37428b89bb7dec8431e502ed6eda83a6c..a02361f9f512eca9d1113a0181fe6fab330cc86e 100644 (file)
--- a/cmd/elf.c
+++ b/cmd/elf.c
@@ -4,7 +4,6 @@
  * All rights reserved.
  */
 
-#include <common.h>
 #include <command.h>
 #include <cpu_func.h>
 #include <elf.h>
index f8b8a798bf6a6f555395fbfed31b41a80ccb5817..4bf49ac598fcf6e063c4f5eb4f647d815a40875a 100644 (file)
@@ -5,13 +5,13 @@
  * Ethernet Switch commands
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <errno.h>
 #include <env_flags.h>
 #include <ethsw.h>
 #include <net.h>
+#include <vsprintf.h>
 
 static const char *ethsw_name;
 
index f6cdb55fc913df3d19e1c08ec86397ff2512fc3c..00c828757ca923ac7fa0c6957bed824be0832ba5 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <event.h>
 
index 7bf241ec732d96b19e678ee1d13a8b9073d37522..d125ec1e31f2d80d8a5b3e288db94e988bec16ff 100644 (file)
@@ -4,8 +4,8 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
+#include <vsprintf.h>
 
 static int do_exit(struct cmd_tbl *cmdtp, int flag, int argc,
                   char *const argv[])
index a0ce0cf5796b9dd091c004ddbbcb4ee36bbfd590..45c8b353b58643333499a136a544ce1a56b09dc1 100644 (file)
@@ -19,7 +19,6 @@
 /*
  * Ext2fs support
  */
-#include <common.h>
 #include <command.h>
 #include <fs.h>
 
index 4791b69fd96d0bf526fa5bab83b54ae88668930c..40d1fe30d5ea68b461828c08f91de3012c46b32b 100644 (file)
@@ -25,7 +25,6 @@
  *             file in uboot. Added ext4fs ls load and write support.
  */
 
-#include <common.h>
 #include <part.h>
 #include <config.h>
 #include <command.h>
index 2b672d888c68b28ee408e3a8544e9536e4f399d8..f43bf680858f61df24c95fc23ecaa5e9fb198475 100644 (file)
@@ -4,7 +4,6 @@
  * Köry Maincent, Bootlin, <kory.maincent@bootlin.com>
  */
 
-#include <common.h>
 #include <bootdev.h>
 #include <command.h>
 #include <dm.h>
index c3c19231c9889aa1e8ab9b56db4e81f31b10af43..d4cfc0c7a282b8697f50c207fa8cb46171797ee1 100644 (file)
@@ -6,7 +6,6 @@
  * (C) Copyright 2014 Linaro, Ltd.
  * Rob Herring <robh@kernel.org>
  */
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <g_dnl.h>
index 69ce1fa5300bb6a8a46600057e57eafb45220ee6..ad0e5ed7d6006588c57c7ab93abf6b64a870a681 100644 (file)
--- a/cmd/fat.c
+++ b/cmd/fat.c
@@ -7,7 +7,6 @@
 /*
  * Boot support
  */
-#include <common.h>
 #include <command.h>
 #include <mapmem.h>
 #include <fat.h>
index 331564c13be9a46844ec6c91213fb0da850c74e5..d16b141ce32d2173b08e64a8084b7b2b0f5a5192 100644 (file)
--- a/cmd/fdt.c
+++ b/cmd/fdt.c
@@ -7,7 +7,6 @@
  *   Matthew McClintock <msm@freescale.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <image.h>
index f4f85ecc7a8e0613c63e55406098a60726b879ef..de0e04f09cfbb734969142d8e0c33feaa1cf9e86 100644 (file)
@@ -7,9 +7,9 @@
 /*
  * FLASH support
  */
-#include <common.h>
 #include <command.h>
 #include <log.h>
+#include <vsprintf.h>
 #include <uuid.h>
 
 #if defined(CONFIG_CMD_MTDPARTS)
index cb39c88063fbfd133a3476b5d1d72f538e4e93bd..ebde094b0a5bb641ed8e6f58a08c46f7e510efc8 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <video.h>
index 8c64e957db0fd5e5e3b5fa2be7e756c4714a5d6e..93f14098ccb627db190f4b80c80d33057cd38507 100644 (file)
@@ -7,7 +7,6 @@
 /*
  *  FPGA support
  */
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <fpga.h>
index dfc6220b5e01173af3b2aa2a9183f342a4da5298..b4bfaa1216572e0e9534f6c0d74f56522027dadf 100644 (file)
@@ -8,10 +8,10 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <display_options.h>
+#include <vsprintf.h>
 
 #include <gdsys_fpga.h>
 
index 46cb43dcdb5bfafe4ad273a37b437ae1450398b2..3d7e06d6f1e5a288bb9b6418d0c4722ba37f9a8f 100644 (file)
--- a/cmd/fs.c
+++ b/cmd/fs.c
@@ -5,7 +5,6 @@
  * Inspired by cmd_ext_common.c, cmd_fat.c.
  */
 
-#include <common.h>
 #include <command.h>
 #include <fs.h>
 
index 5dc94aa6408177f07d10d0baf8af2554f0586ec8..5f7770d09ac650df99581b18a6838bc93af8a7c2 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2014, Bachmann electronic GmbH
  */
 
-#include <common.h>
 #include <command.h>
 #include <fs.h>
 
index f884c894fb002fad53f90d894a25559093c3223f..598ef496a430071dd3d141249eee7146f18bca78 100644 (file)
@@ -8,11 +8,11 @@
  * Martha Marx <mmarx@silicontkx.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <fuse.h>
 #include <mapmem.h>
+#include <vsprintf.h>
 #include <linux/errno.h>
 
 static int strtou32(const char *str, unsigned int base, u32 *result)
index 2e74e02b49980a4e26c6c39f0886c52e1f09c97e..fc307efce8c288e5d550bd61e40d2658a4b8da3b 100644 (file)
@@ -11,8 +11,8 @@
 /*
  * Get Timer overflows after 2^32 / CONFIG_SYS_HZ (32Khz) = 131072 sec
  */
-#include <common.h>
 #include <command.h>
+#include <time.h>
 
 static int do_gettime(struct cmd_tbl *cmdtp, int flag, int argc,
                      char *const argv[])
index dab6f7097aec1a0c9ea40a64d128dfa665010377..7a43dc6ab18430ea934761ace9bc0a3614881213 100644 (file)
@@ -6,7 +6,6 @@
  * Licensed under the GPL-2 or later.
  */
 
-#include <common.h>
 #include <command.h>
 #include <errno.h>
 #include <dm.h>
index 7aaf1889a5ace1f0edac2af2a5c808b9b9ed9429..36b112d59784060766b0ffe8d24f0ac93df11e23 100644 (file)
--- a/cmd/gpt.c
+++ b/cmd/gpt.c
@@ -10,7 +10,6 @@
  * author: Piotr Wilczek <p.wilczek@samsung.com>
  */
 
-#include <common.h>
 #include <blk.h>
 #include <env.h>
 #include <log.h>
index 5534a735fa7eef8c1e2b1f105c2a6e5f9bf47de7..60d482b7f87267418b998e68a02592de1aaa121d 100644 (file)
@@ -9,7 +9,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <hash.h>
 #include <linux/ctype.h>
index 9f8393eefd81f6ccea9a99f6cbd2d0779db3d611..56579e28d31d7dfd0aa25130f8eb7093ea631783 100644 (file)
@@ -4,7 +4,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 
 static int do_help(struct cmd_tbl *cmdtp, int flag, int argc,
index b6bf4670b1cea37031a70df351b33756f916fd14..8972986ca9d1152eadf5b790e8fe695303d644e6 100644 (file)
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <cli.h>
 
index c33c2a9787eb36562c66d9267d1d9eea22ba5d93..e03576b4d2def808687a02f7db48d359a66426ef 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2012, Google Inc.
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <fs.h>
index 80831561c6711f70be75c7740380073b008d4ecf..7dac0a9fb6cbe459096eb4d8de99bc45001f7847 100644 (file)
--- a/cmd/i2c.c
+++ b/cmd/i2c.c
@@ -64,7 +64,6 @@
  * Adapted from cmd_mem.c which is copyright Wolfgang Denk (wd@denx.de).
  */
 
-#include <common.h>
 #include <bootretry.h>
 #include <cli.h>
 #include <command.h>
index ddc87d3a0bb95d0f36789267d5ac0c709c963ce6..036489fda979b8656cc9cd9f2a21867513c21e3c 100644 (file)
--- a/cmd/ide.c
+++ b/cmd/ide.c
@@ -8,7 +8,6 @@
  * IDE support
  */
 
-#include <common.h>
 #include <blk.h>
 #include <dm.h>
 #include <config.h>
index 35de2373e60213b442f98e170b57e2d26d14f03f..963990176916d6af88b95331830ef68391afe22a 100644 (file)
--- a/cmd/ini.c
+++ b/cmd/ini.c
@@ -11,9 +11,9 @@
  * http://code.google.com/p/inih/
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
+#include <vsprintf.h>
 #include <linux/ctype.h>
 #include <linux/string.h>
 
index 2de1111998fe6f5987480cceef503ca84c2188e2..617373d3cb71052283915baa8de7ae1913e2cc74 100644 (file)
--- a/cmd/io.c
+++ b/cmd/io.c
@@ -7,9 +7,9 @@
  * IO space access commands.
  */
 
-#include <common.h>
 #include <command.h>
 #include <display_options.h>
+#include <vsprintf.h>
 #include <asm/io.h>
 
 /* Display values from last command */
index f28359e2875d68b761c443c38cf136511f2c99e7..0a041ed8652a661aefccefa2dbef83f767d21ad8 100644 (file)
@@ -3,9 +3,9 @@
  * Copyright (c) 2014 Google, Inc
  */
 
-#include <common.h>
 #include <command.h>
 #include <iotrace.h>
+#include <vsprintf.h>
 
 static void do_print_stats(void)
 {
index 1d3e28cb3ce02427dc144ba3a0ca940564813d86..655aba576a8b29f43808adc7af7e2d33490b7df4 100644 (file)
--- a/cmd/irq.c
+++ b/cmd/irq.c
@@ -3,7 +3,6 @@
  * Copyright 2008 Freescale Semiconductor, Inc.
  */
 
-#include <common.h>
 #include <config.h>
 #include <command.h>
 #include <irq_func.h>
index 74414cbdc4c67e8dba32b533b1c563d5e182e542..b79512a505d6726048bb50514fde14fd69e6998a 100644 (file)
  * A few parts were lifted from bash 'test' command
  */
 
-#include <common.h>
 #include <config.h>
 #include <command.h>
 #include <env.h>
 #include <mapmem.h>
+#include <vsprintf.h>
 
 #include <asm/io.h>
 
index e00fcc2022665024c7399d97224da15861566bc8..89d336f5958564960a0988fb6441d6ee964879c4 100644 (file)
@@ -70,7 +70,6 @@
 /*
  * JFFS2/CRAMFS support
  */
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #if defined(CONFIG_CMD_FLASH)
index 9acb8e16386392550c1cfd42d0bbaf76f591c72f..e0d3c7fe7489143ab1971e15a4c492f5c1d025de 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (c) 2021, Chris Morgan <macromorgan@hotmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <hexdump.h>
index 48a02baf509deaa0c0cb8e554cb8cb4f7076e2ac..4256b3429c2f9520f8cc54f51627b6e0bfa7a5d7 100644 (file)
--- a/cmd/led.c
+++ b/cmd/led.c
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <led.h>
index 5903a90fe53b14b518376c6cd084e92e1b88e8e2..1a5271000bf354c3a5aab7e2f02e0cd85a287b75 100644 (file)
@@ -1,6 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0+
 
-#include <common.h>
 #include <jffs2/jffs2.h>
 #include <linux/mtd/mtd.h>
 #include <linux/mtd/partitions.h>
index 5256255f052dabdd477af3cc67c53b9b54049896..50de7e89d8f4c0533497fd907ef674c788cd2d5a 100644 (file)
@@ -9,10 +9,9 @@
  * Ulf Samuelsson <ulf.samuelsson@atmel.com>
  */
 
-#include <common.h>
-#include <config.h>
 #include <command.h>
 #include <status_led.h>
+#include <vsprintf.h>
 
 struct led_tbl_s {
        char            *string;        /* String for use in the command */
index 15411b5a92d56ed09fd3e878c1d8032b8305c114..161663ff29c64173d3bb62f52c7aecdabdef80ab 100644 (file)
@@ -4,7 +4,6 @@
  * Author: Harald Welte <laforge@openmoko.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <gzip.h>
 #include <malloc.h>
index 540361b43f02e09fdb9ec4d5a89ca37029279800..ace1c52f90added1f7906cad4acf2369d7893457 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * Serial up- and download support
  */
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <cpu_func.h>
index c9a23e4ae0d311b3800b65a3a1639f80c2802c49..519ec76f3b5100338991bee570616ec8f32dc00a 100644 (file)
--- a/cmd/log.c
+++ b/cmd/log.c
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <getopt.h>
index d214dafc3bee0353e39b251131153b34cbafa2f0..7c00bfdc7a09a0b28adca7a00bfe82587a174fba 100644 (file)
@@ -4,7 +4,6 @@
  * Niel Fourie, DENX Software Engineering, lusus@denx.de.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <dm.h>
index 81924da461802425ebefff0f7173c48008cfbe96..c40b96941b477b035b4551e34345c80c8e0f28cb 100644 (file)
@@ -9,10 +9,10 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <mapmem.h>
+#include <vsprintf.h>
 #include <asm/io.h>
 
 #include <lzma/LzmaTools.h>
index ec99b662834ebd121d18e0c951fb8961db21639c..7e1f92a13bb5eaa481991d05c14bab360bf0bd32 100644 (file)
--- a/cmd/mbr.c
+++ b/cmd/mbr.c
@@ -8,11 +8,11 @@
  * based on the gpt command.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <malloc.h>
 #include <part.h>
+#include <vsprintf.h>
 
 /**
  * extract_val() - Extract a value from the key=value pair list
index 3c74326161efc2b36da82bf765a93a7cc47e4dd6..c0a87087d315014a1bfea595cb152f52ea46798c 100644 (file)
@@ -8,7 +8,6 @@
  * MDIO Commands
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <miiphy.h>
index 768057e4d3f682c3561ac28b57fd261c24c31793..4989d27f2ab466150a82e381703ee596d59af477 100644 (file)
--- a/cmd/mem.c
+++ b/cmd/mem.c
@@ -10,7 +10,6 @@
  * Copied from FADS ROM, Dan Malek (dmalek@jlc.net)
  */
 
-#include <common.h>
 #include <console.h>
 #include <bootretry.h>
 #include <cli.h>
@@ -24,6 +23,7 @@
 #include <log.h>
 #include <mapmem.h>
 #include <rand.h>
+#include <time.h>
 #include <watchdog.h>
 #include <asm/global_data.h>
 #include <asm/io.h>
index de9a242e17f543a5ac8a275d2321f964bb556cf2..b69f8123ee2da405f8b606de46a4931d78021377 100644 (file)
@@ -9,11 +9,11 @@
  */
 
 #include <command.h>
-#include <common.h>
 #include <env.h>
 #include <asm/arch/sm.h>
 #include <stdlib.h>
 #include <display_options.h>
+#include <vsprintf.h>
 
 static int do_sm_serial(struct cmd_tbl *cmdtp, int flag, int argc,
                        char *const argv[])
index fab420ee29e20c539fc04d00bb102d384fc7bf55..ce3724896926d28391ba594dcdcce22ad0f33df7 100644 (file)
--- a/cmd/mii.c
+++ b/cmd/mii.c
@@ -8,7 +8,6 @@
  * MII Utilities
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <miiphy.h>
index ec32b41ed1e96f01bcc27b1d3d2a6226d8966bed..792d9723c759272fd27b246dae756963244a537f 100644 (file)
@@ -8,7 +8,6 @@
  * A command interface to access misc devices with MISC uclass driver APIs.
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <errno.h>
index 2d5430a53079628b8bb10ba49a1ff46bcb4bd837..7244a90f4dcebb3f1d415505a936963d7625b15b 100644 (file)
--- a/cmd/mmc.c
+++ b/cmd/mmc.c
@@ -4,7 +4,6 @@
  * Kyle Harris, kharris@nexus-tech.net
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <console.h>
@@ -14,6 +13,7 @@
 #include <part.h>
 #include <sparse_format.h>
 #include <image-sparse.h>
+#include <vsprintf.h>
 
 static int curr_device = -1;
 
index 1b4373f25873a275931b87058513241a0a7b7b2b..b9b5e01624666add6de930e6c2afbc1701edca40 100644 (file)
--- a/cmd/mp.c
+++ b/cmd/mp.c
@@ -3,9 +3,9 @@
  * Copyright 2008-2009 Freescale Semiconductor, Inc.
  */
 
-#include <common.h>
 #include <command.h>
 #include <cpu_func.h>
+#include <vsprintf.h>
 
 static int cpu_status_all(void)
 {
index 9189f45cabd5505f47800633f3decc508cef978d..795aaa2b37da7b539fee07efacb20be867aa73f3 100644 (file)
--- a/cmd/mtd.c
+++ b/cmd/mtd.c
@@ -9,7 +9,6 @@
  */
 
 #include <command.h>
-#include <common.h>
 #include <console.h>
 #if CONFIG_IS_ENABLED(CMD_MTD_OTP)
 #include <hexdump.h>
index b31db73ebfc9759636f961e0edbf622acd95f6a0..f57d84dbb3add64dcde02de0151eb48f8641d433 100644 (file)
@@ -70,7 +70,6 @@
  *
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <log.h>
index 388fb0878a84aeb0cbe753ce22b000b1f89c1d6b..2f6c08b8b079432d86ac603387e71f8c3a7d3102 100644 (file)
--- a/cmd/mux.c
+++ b/cmd/mux.c
@@ -6,7 +6,6 @@
  * Author: Pratyush Yadav <p.yadav@ti.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <errno.h>
 #include <dm.h>
index 744b1c20aa83f2f4743975dfdd132c40c5ab9c51..e3f21dd0d81521970c4ebbbfc1d80568b7722a15 100644 (file)
@@ -5,7 +5,6 @@
  */
 
 #include <config.h>
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <image.h>
index 4ee8f54ea9c7ab839bdbae52a578d067010b6b8a..5653877cd4a2cbca0b70c605c392acb72c80ff61 100644 (file)
@@ -5,7 +5,6 @@
  * SPDX-License-Identifier:    GPL-2.0
  */
 
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <dm.h>
index fe834c4ac5c030e64c37736566904b3ec6f0e3a8..5a328e0acddfa244e4d5c1ae207235e1fc782ac9 100644 (file)
@@ -23,7 +23,6 @@
  * only
  */
 
-#include <common.h>
 #include <bootstage.h>
 #include <image.h>
 #include <asm/cache.h>
index d407d8320a3d84dcf445938eeaef41bced20cb9d..b206ff58e68176ce6db4f232e220af78a97e5c9e 100644 (file)
--- a/cmd/net.c
+++ b/cmd/net.c
@@ -9,7 +9,6 @@
 /*
  * Boot support
  */
-#include <common.h>
 #include <bootstage.h>
 #include <command.h>
 #include <dm.h>
index e77338f81394b3f92fb23779bd7dfc30266e7f7f..98a687bcabbdd3fc4d29cc55169489aba4661902 100644 (file)
@@ -23,7 +23,7 @@
  * environment. After that, we use a hash table.
  */
 
-#include <common.h>
+#include <config.h>
 #include <cli.h>
 #include <command.h>
 #include <console.h>
index 7a30b5cc8f87ca4fe614d8cd5227bb11ae9b74ec..64ae2ad2ce24b926c21f728bf4b31b2dbbe4370a 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <charset.h>
-#include <common.h>
 #include <command.h>
 #include <efi_loader.h>
 #include <efi_variable.h>
index 09d5f438fb1a112fd75da207fc139c5ee8d91197..f2c9acba5c3272a17a93a27acef6cb77632ddf29 100644 (file)
@@ -4,7 +4,6 @@
  * Copyright (C) 2017 Bin Meng <bmeng.cn@gmail.com>
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <dm.h>
index fad781583a313503db6962deb4153f01be11db11..6e808ce3fce4d1214cfdef8e2f999101e73ad817 100644 (file)
@@ -9,7 +9,6 @@
  * published by the Free Software Foundation.
  */
 
-#include <common.h>
 #include <command.h>
 #include <malloc.h>
 #include <linux/printk.h>
index b3cafd924108fa417bc483b843bf42514c2be14a..b155278ee2ad2972e141a079f533ac2f4a64aeb8 100644 (file)
@@ -4,7 +4,6 @@
  */
 
 #include <command.h>
-#include <common.h>
 #include <env.h>
 #include <errno.h>
 #include <image.h>
index 210bc5d4c231ab6b2b54fc8258bf7e2c576b2b78..5671338d9e7bc27173c9852a7b387de1d4dbd881 100644 (file)
--- a/cmd/osd.c
+++ b/cmd/osd.c
@@ -9,7 +9,6 @@
  * Dirk Eibach,  Guntermann & Drunck GmbH, eibach@gdsys.de
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <hexdump.h>
index f13b3f094fab53ccf1e42bd0f0c2065e597c7489..7c0affa5eb50e6ad73ff20b9dfa57d52ff86e861 100644 (file)
@@ -3,7 +3,7 @@
  * Copyright (c) 2020 Theobroma Systems Design und Consulting GmbH
  */
 
-#include <common.h>
+#include <vsprintf.h>
 #include <command.h>
 
 static int do_panic(struct cmd_tbl *cmdtp, int flag, int argc,
index c75f85acd52d4dca58bebfab742cca99cc4f2641..d140a1eddb92e1a4d9ff3ffa0442cb66d99cecd3 100644 (file)
@@ -15,7 +15,6 @@
  * Pavel Bartusek <pba@sysgo.com>
  */
 
-#include <common.h>
 #include <config.h>
 #include <command.h>
 #include <env.h>
index a0149203fad542db7b57d3ba2880e2d4fffd1b2a..8d610966c13dedd0dd612631b9da894c55e590a8 100644 (file)
@@ -4,8 +4,8 @@
  * Ramon Fried <rfried.dev@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
+#include <vsprintf.h>
 #include <net.h>
 #include <net/pcap.h>
 
index d89e71c16a04900a9adbc7ae092e080dd3d280f1..3c0aed50cae309630fbe941d4780f165632f0014 100644 (file)
--- a/cmd/pci.c
+++ b/cmd/pci.c
@@ -12,7 +12,6 @@
  * PCI routines
  */
 
-#include <common.h>
 #include <bootretry.h>
 #include <cli.h>
 #include <command.h>
index 98161da93a059ee9a8b8dddfc6ceb51853ed663d..19e71db8cbd2fe074b8ea1efa8ee61638587791d 100644 (file)
@@ -6,7 +6,6 @@
  * PCI Express Maximum Packet Size (MPS) configuration
  */
 
-#include <common.h>
 #include <bootretry.h>
 #include <cli.h>
 #include <command.h>
index 105f01eaafffce364e673af7817d122d27f9547d..01f3e4af6cec3a4cdad6ed96357729949a788645 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2018, STMicroelectronics - All Rights Reserved
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <errno.h>
index 9a3ba2bffc50041f61c0a21f11af0b5c4ac8cefe..1a3416fb2a96afb5d631d2af277bdce184690a63 100644 (file)
--- a/cmd/pmc.c
+++ b/cmd/pmc.c
@@ -5,7 +5,6 @@
  * Copyright 2019 Google LLC
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <power/acpi_pmc.h>
index c9e9730adf909e30fd8420145b7d66a80cd6cbaf..3ad1b8aa3756473dfb8779bb3060c38827760ea3 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2014-2015 Samsung Electronics
  * Przemyslaw Marczak <p.marczak@samsung.com>
  */
-#include <common.h>
 #include <command.h>
 #include <errno.h>
 #include <dm.h>
index 0c6887e0d6e983327eaaf073d20a368ba17ffd72..a1727ac15a2d8b24a753861487a8c87fbd589c49 100644 (file)
  * We try to be compatible.
  */
 
-#include <common.h>
 #include <ctype.h>
 #include <errno.h>
 #include <stddef.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <vsprintf.h>
 
 #define WANT_HEX_ESCAPES 0
 #define PRINT_CONVERSION_ERROR 1
index 1b604c37373c5de86b20b8f796aa289d429547f8..3a83ac9cd92c8a0f6a5efb5ebfc88b01e2fc8b53 100644 (file)
@@ -6,7 +6,6 @@
  */
 
 #include <blk.h>
-#include <common.h>
 #include <command.h>
 
 /* Current I/O Device */
index 21134eb7a304646ad305eaac48bd289b8be5a8d8..ae02c28c07503763290b073702d6589e2f2fbeb1 100644 (file)
--- a/cmd/pxe.c
+++ b/cmd/pxe.c
@@ -4,12 +4,12 @@
  * Copyright (c) 2014, NVIDIA CORPORATION.  All rights reserved.
  */
 
-#include <common.h>
 #include <command.h>
 #include <fs.h>
 #include <net.h>
 #include <net6.h>
 #include <malloc.h>
+#include <vsprintf.h>
 
 #include "pxe_utils.h"
 
index 1b8c775ebf5ab10cffac06998f1a043dd3ff2b84..1b108118658e39c3cd039a53afb718a74df7ed81 100644 (file)
--- a/cmd/qfw.c
+++ b/cmd/qfw.c
@@ -3,7 +3,6 @@
  * (C) Copyright 2015 Miao Yan <yanmiaobest@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <errno.h>
index 1218e7acfd0a3bd2b876b010a997a51506be1a3e..af54bd176547fa05724e18bfca8cfccd0a2f85e9 100644 (file)
@@ -8,10 +8,10 @@
  * Software Foundation.
  */
 
-#include <common.h>
 #include <command.h>
 #include <mapmem.h>
 #include <part.h>
+#include <vsprintf.h>
 
 static int
 do_rw(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
index c8a04b1754eb5ace63a18bad5d5d40f3ccbd4743..53b8bc41bfe518d9b6c0a60618c7f5a713d9c714 100644 (file)
@@ -4,7 +4,6 @@
  * Subodh Nijsure, SkyStream Networks, snijsure@skystream.com
  */
 
-#include <common.h>
 #include <command.h>
 #include <asm/ppc.h>
 
index 635a9add58567e3f082aa330a5d0de722527e6d5..da298090bb7605d0e6dbf9630edc6971044ff114 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2014-2015 Samsung Electronics
  * Przemyslaw Marczak <p.marczak@samsung.com>
  */
-#include <common.h>
 #include <command.h>
 #include <errno.h>
 #include <dm.h>
index ea8724a187da9b3fc90f90eca4a94ba7414b1d9f..3c5b6a05b1afef2bac4aeade13550ecad5e23f16 100644 (file)
@@ -3,7 +3,6 @@
  * (C) Copyright 2015
  * Texas Instruments Incorporated - https://www.ti.com/
  */
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <errno.h>
index 2d8ee7e5bbb07b5af312b14fa57bac9b1a4469e8..a231604e492084bf1c0f688e51279f5d6a65e27d 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
  */
 
-#include <common.h>
 #include <command.h>
 #include <asm/sbi.h>
 
index 5b80427cb949aace1fa550b20b8a0cf0aeadeed0..a870c11911085e9c557016a06b4392f30fbc24a5 100644 (file)
@@ -8,7 +8,6 @@
  * Copyright (C) 2023 Johan Jonker <jbx6244@gmail.com>
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <dm.h>
index e5ab8681122606f5f403fd64de250627c64769f9..2fb7202303acd04af16b8c8f288f0d695351094d 100644 (file)
--- a/cmd/rng.c
+++ b/cmd/rng.c
@@ -4,7 +4,6 @@
  *
  * Copyright (c) 2019, Heinrich Schuchardt <xypron.glpk@gmx.de>
  */
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <hexdump.h>
index 07088564a109b60acce67d6857a5223b6c9648a6..48497aa876418e56768d4e61c05702eaabefc0c2 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2017 Eddie Cai <eddie.cai.linux@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <console.h>
 #include <g_dnl.h>
index a344cfa76b1d52c1f77fa00b4c7f9c8cb2dd4f07..a931fd9d54f0199bbfdb94689840d67a84d7ccf6 100644 (file)
--- a/cmd/rtc.c
+++ b/cmd/rtc.c
@@ -1,6 +1,5 @@
 // SPDX-License-Identifier: GPL-2.0+
 
-#include <common.h>
 #include <command.h>
 #include <display_options.h>
 #include <dm.h>
index 9c9fe111d12f2b7fe071b02c7c666a5e8389247b..8b923f9378b221cbc1002021ecdfd66bbfaa3824 100644 (file)
@@ -9,7 +9,6 @@
  *             Dave Liu <daveliu@freescale.com>
  */
 
-#include <common.h>
 #include <ahci.h>
 #include <blk.h>
 #include <dm.h>
index 0d55818e3c6741b3cef63a58ab8222d4a5068c49..1aa5921f03e6695e04d89165567fd4077ac59fc3 100644 (file)
--- a/cmd/sb.c
+++ b/cmd/sb.c
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <spl.h>
index 2b8d5aecf3497be82f65e3ad3a09d3ac9ed6fd89..9c749d19af81745f7c129147ab25adc57eaa9d8b 100644 (file)
@@ -4,7 +4,6 @@
  *
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <scp03.h>
index c501d7f456d7eba9af7701e6e679db326419a179..c286bdc072605796614c817fea43f4cf5fb6d968 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * SCSI support.
  */
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <scsi.h>
index 3aafb43c48a056842ce314f028e135edd32a61d0..3c8e819923400c93d3957e99d23ab9e1862fcb84 100644 (file)
@@ -4,7 +4,6 @@
  * Support for the "SEAttle iMAge" SEAMA NAND image format
  */
 
-#include <common.h>
 #include <command.h>
 #include <nand.h>
 
index ab76824a32bbee54690ea4302785f6aa77e43eda..e111b8ba98ad7c276621aca949ccd31ba5dc12ed 100644 (file)
@@ -8,7 +8,6 @@
  * This file provides a shell like 'expr' function to return.
  */
 
-#include <common.h>
 #include <config.h>
 #include <command.h>
 #include <ctype.h>
@@ -16,6 +15,8 @@
 #include <log.h>
 #include <malloc.h>
 #include <mapmem.h>
+#include <vsprintf.h>
+#include <linux/errno.h>
 #include <linux/sizes.h>
 #include "printf.h"
 
index e3866899f6c463df518736b3c5d10316c4df89d7..f43a2e08b318ca3a6ddc4f8af791d46a455d7611 100644 (file)
--- a/cmd/sf.c
+++ b/cmd/sf.c
@@ -5,7 +5,6 @@
  * Copyright (C) 2008 Atmel Corporation
  */
 
-#include <common.h>
 #include <command.h>
 #include <display_options.h>
 #include <div64.h>
@@ -14,6 +13,7 @@
 #include <malloc.h>
 #include <mapmem.h>
 #include <spi.h>
+#include <time.h>
 #include <spi_flash.h>
 #include <asm/cache.h>
 #include <jffs2/jffs2.h>
index bcc665a5a6c692a9176fcc5694eee6ba154f5ae8..52aa26c78d2f9b8b81d5390adc771700b1569e6d 100644 (file)
@@ -7,7 +7,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <hash.h>
 #include <u-boot/sha1.h>
index c741b4aa029bdbf38da667467213c41c0bc87a72..7616fed7556667448c532d130101483e4fea0066 100644 (file)
@@ -4,9 +4,10 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <console.h>
+#include <time.h>
+#include <vsprintf.h>
 #include <linux/delay.h>
 
 static int do_sleep(struct cmd_tbl *cmdtp, int flag, int argc,
index fb80431ad1d954bab5498c3cdcdc19bd8927a4a2..3a4d885e37e1fd74c4a265f17f9e25053d72f880 100644 (file)
@@ -4,8 +4,8 @@
  * Michalis Pappas <mpappas@fastmail.fm>
  */
 #include <asm/psci.h>
-#include <common.h>
 #include <command.h>
+#include <vsprintf.h>
 #include <linux/arm-smccc.h>
 #include <linux/compiler.h>
 #include <linux/psci.h>
index 0b7f9599716b29a6d1f9d68fedaafe2caae648d4..08bf74112f1659401f4311a98c9d4e3e9e6daf61 100644 (file)
@@ -4,7 +4,6 @@
  * Rajeshwari Shinde <rajeshwari.s@samsung.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <fdtdec.h>
index 0ba9736b1ab34fe746504893ca47c93c2a0fd8ec..c9b5f8e400a615c055979270774cd9bde3183a79 100644 (file)
@@ -14,7 +14,6 @@
 
 /* #define DEBUG */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <image.h>
index f30018f33be81e0f7949f711aff02e9ce6beb3ec..ea30c854c2188974b2086502d94dd44950bd90a9 100644 (file)
--- a/cmd/spi.c
+++ b/cmd/spi.c
@@ -8,7 +8,6 @@
  * SPI Read/Write Utilities
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <errno.h>
index 8a2ded72be9ff7703426cc6df1bf66cf8933b465..d1f47c7316b49f95c0bb2f4e20d8085500d94b68 100644 (file)
--- a/cmd/spl.c
+++ b/cmd/spl.c
@@ -4,7 +4,6 @@
  * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
  */
 
-#include <common.h>
 #include <command.h>
 #include <cmd_spl.h>
 #include <env.h>
index f3470288faccb1a7146ab5be3e8fe3a031c2c506..e7ff4a0615894dedcd8ae29ef2d1381e1f974d3b 100644 (file)
@@ -3,7 +3,6 @@
  *  Copyright 2021 Broadcom
  */
 
-#include <common.h>
 #include <command.h>
 
 static int do_test_stackprot_fail(struct cmd_tbl *cmdtp, int flag, int argc,
index bf348afce8141256c61e50a0f143e323c1f98a43..5bcb0f2b567cd4526116d6c3fdd31482eb18155b 100644 (file)
@@ -7,8 +7,8 @@
  */
 
 #include <config.h>
-#include <common.h>
 #include <command.h>
+#include <vsprintf.h>
 
 static char *start_addr, *last_addr;
 
index d14c570d96ab090de1158216040d79c77832fc03..0ea08fd7b5356137f6df589525bd7c5c17cbe9b3 100644 (file)
@@ -1,10 +1,10 @@
 // SPDX-License-Identifier: GPL-2.0+
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <fs.h>
 #include <pxe_utils.h>
+#include <vsprintf.h>
 
 /**
  * struct sysboot_info - useful information for sysboot helpers
index 420965de14362ae154817e9c726bce2438144f9c..41e422fc937d9073a3bf0dad7c3893e116619093 100644 (file)
@@ -5,7 +5,6 @@
  * Written by Robert Marko <robert.marko@sartura.hr>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <thermal.h>
index 9e32a4191e1e8cb0762039bbbdf3f09b44f308b5..369a755e0f5f3a8bd0321ddb6648163259987bbe 100644 (file)
@@ -7,7 +7,6 @@
 /*
  * Boot support
  */
-#include <common.h>
 #include <command.h>
 #include <stdio_dev.h>
 #include <serial.h>
index fa7c48fb9f103bd197e582cc88fa43935fb44e29..b4c3eabf9f604279285e941f82399c5c89a38215 100644 (file)
@@ -4,10 +4,10 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <fs.h>
 #include <log.h>
+#include <vsprintf.h>
 
 #define OP_INVALID     0
 #define OP_NOT         1
index 48e22b31d025cfb436044157e6ae973f319903d9..70061bf8d4cccb4013b1b83310806f2ae197f576 100644 (file)
@@ -6,7 +6,6 @@
  * All rights reserved.
  */
 
-#include <common.h>
 #include <command.h>
 #include <thor.h>
 #include <dfu.h>
index bbd406fc66eca5055c11285439002d126db47336..70ce53d01e874ac3f825b923232b9e94d3381202 100644 (file)
@@ -12,7 +12,6 @@
 #include <asm/arch/hardware.h>
 #include <asm/cache.h>
 #include <asm/emif.h>
-#include <common.h>
 #include <command.h>
 #include <asm/global_data.h>
 
index a0492a5fdee34b51072abf4a63949dc8a13e2ac2..305023af1e7d02babd16ab538ce6fb6a7e6c6e3e 100644 (file)
@@ -5,7 +5,6 @@
  * Copyright (C) 2020 Texas Instruments Incorporated, <www.ti.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <k3-dev.h>
index db8c1892df4a437050e39bff6c0f3cc6b29ba444..eee6084e9685ab77fa5d616d73d4e67a7abe25eb 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2011 The Chromium OS Authors.
  */
 
-#include <common.h>
 #include <command.h>
 
 static void report_time(ulong cycles)
index 551be5dd54eef463f09c9475dda88e373279a383..04fcd84ac6a65a116d113452e491c7a2f1989f74 100644 (file)
@@ -4,8 +4,8 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
+#include <time.h>
 
 static int do_timer(struct cmd_tbl *cmdtp, int flag, int argc,
                    char *const argv[])
index 57cfd355df1bbece8f5a7eeae1a1fbb4cacc8054..0aec752177099b30947eb5594f69fa0bfde451f2 100644 (file)
@@ -9,7 +9,6 @@
  * Copyright (C) 2014,2016 david_yang <david_yang@accton.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <i2c.h>
index a7dc23d85d5d5e1d4ee350d445afb4aee86ab97d..1cd57f901b6d2b023252ad3b02f823145f421ce8 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (c) 2013 The Chromium OS Authors.
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <env.h>
index 1b1efcd204d2724073cfedc43e6617daee4d2dc9..6e019d1c7291b8ef894f749df5937aab742e77ca 100644 (file)
@@ -3,10 +3,10 @@
  * Copyright (c) 2013 The Chromium OS Authors.
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <malloc.h>
+#include <vsprintf.h>
 #include <asm/unaligned.h>
 #include <tpm-common.h>
 #include <tpm-v1.h>
index 7e479b9dfe36e511196b5a5ed855b9daf82942cc..99c540b26de946e714e071de6efc06135daa3e2f 100644 (file)
@@ -4,7 +4,6 @@
  * Author: Miquel Raynal <miquel.raynal@bootlin.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <log.h>
index c7fa6e775f55cf1bacaff5925007c8d5601bb361..9c8b1c74384abeee612d09f1535f72a8abb6aa32 100644 (file)
@@ -3,10 +3,10 @@
  * Copyright (c) 2015 Google, Inc
  */
 
-#include <common.h>
 #include <command.h>
 #include <cpu_func.h>
 #include <log.h>
+#include <time.h>
 #include <tpm-v1.h>
 #include <linux/printk.h>
 #include "tpm-user-utils.h"
index 2e3ee1d3ba23cc2ac8d73a924bb925c5dbb06666..937e6a682add0f1182b7f5edc1d8c91b9bf0f62f 100644 (file)
@@ -3,11 +3,11 @@
  * Copyright (c) 2011 The Chromium OS Authors.
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <mapmem.h>
 #include <trace.h>
+#include <vsprintf.h>
 #include <asm/io.h>
 
 static int get_args(int argc, char *const argv[], char **buff,
index 0d849d9979e46ed10535cc58295cef375d946532..113b4e673304b6089a1e7f60eed899e9a4663045 100644 (file)
@@ -7,10 +7,10 @@
  * (C) Copyright 2003 Stefan Roese, stefan.roese@esd-electronics.com
  */
 
-#include <common.h>
 #include <command.h>
 #include <log.h>
 #include <malloc.h>
+#include <vsprintf.h>
 #include <asm/io.h>
 #include <pci.h>
 
index 0a6a80bdd1093ea536d957e81e05b8811584691c..8c1b5df057247783e5033625abf8dafe4b9deee4 100644 (file)
--- a/cmd/ubi.c
+++ b/cmd/ubi.c
@@ -11,7 +11,6 @@
  * published by the Free Software Foundation.
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <exports.h>
index 2a035bc7ae6f334a1957d8351f31cf2e8447e0d8..8fd39032eccf88ebe4da48be19ef44037fe81cd2 100644 (file)
 
 #undef DEBUG
 
-#include <common.h>
 #include <config.h>
 #include <command.h>
 #include <log.h>
 #include <ubifs_uboot.h>
+#include <vsprintf.h>
 
 static int ubifs_initialized;
 static int ubifs_mounted;
index 536bd85b75d8670a1afdc8fa59a35d5d1c9be3c8..6e21fbb1685ceea926427691baa43599753e60f9 100644 (file)
--- a/cmd/ufs.c
+++ b/cmd/ufs.c
@@ -5,9 +5,9 @@
  * Copyright (C) 2019 Texas Instruments Incorporated - https://www.ti.com
  *
  */
-#include <common.h>
 #include <command.h>
 #include <ufs.h>
+#include <vsprintf.h>
 
 static int do_ufs(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 {
index fb3a32d4d5a722ff646d7081e5c8ef680fc9b4fc..d1a712829d014e7d1a338dc2fff112c1941a9b6f 100644 (file)
@@ -3,9 +3,9 @@
  * (C) Copyright 2003 Stefan Roese, stefan.roese@esd-electronics.com
  */
 
-#include <common.h>
 #include <command.h>
 #include <malloc.h>
+#include <vsprintf.h>
 #include <asm/io.h>
 #include <pci.h>
 
index 5f20838e899c65109b22bfdd8b72d86083e1aa3a..fc5200117adc0261b4723c59598c33e9bacf6a09 100644 (file)
@@ -4,9 +4,9 @@
  * FUJITSU COMPUTERTECHNOLOGIES LIMITED. All rights reserved.
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
+#include <vsprintf.h>
 #include <u-boot/lz4.h>
 
 static int do_unlz4(struct cmd_tbl *cmdtp, int flag, int argc,
index bc6cee060432fc6040ba51d51f55ca3879360de7..e7a3f9808b2c51fa1acf18ac1344298977665635 100644 (file)
@@ -4,12 +4,12 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <gzip.h>
 #include <mapmem.h>
 #include <part.h>
+#include <vsprintf.h>
 
 static int do_unzip(struct cmd_tbl *cmdtp, int flag, int argc,
                    char *const argv[])
index 23253f22231c7e65e8bc4369a0d013f9ad0d900f..3a3764a5b8623dbfe42d1620ac11cb7fc8e91079 100644 (file)
--- a/cmd/usb.c
+++ b/cmd/usb.c
@@ -10,7 +10,6 @@
  * project.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <bootstage.h>
 #include <command.h>
index cbdda733533ca53ccccffd457bbb8a6305d261fb..39259a3b09253cb643f26f4f2f98c79745fbff62 100644 (file)
@@ -6,7 +6,6 @@
  * Author: Stefan Agner <stefan.agner@toradex.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <g_dnl.h>
 #include <sdp.h>
index 751701fe73aff2c579e022bbbc2adbaad9859f11..47e8b70cd103128d0a1f82dcc06e04ee89edeb55 100644 (file)
@@ -6,7 +6,6 @@
  * Copyright (c) 2015, NVIDIA CORPORATION. All rights reserved.
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <console.h>
index 0e84b0e97aa45568cd6ca05256348649a68ba38a..423d9e5f8f09bdb17c90f5969a111d5a96bc0f56 100644 (file)
--- a/cmd/vbe.c
+++ b/cmd/vbe.c
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <bloblist.h>
 #include <bootmeth.h>
 #include <bootstd.h>
index d99a44f19fb378f99e96a656f8410a3e85b64265..53db1a0b6bd187fb1a52bc586f26914ea8fceed5 100644 (file)
@@ -4,7 +4,6 @@
  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  */
 
-#include <common.h>
 #include <command.h>
 #include <display_options.h>
 #include <version_string.h>
index 942f81c1633627bd1fddf40392c3d743d1824f82..91bd6de14dc16afb8c864533e2b088a4edda258f 100644 (file)
@@ -6,7 +6,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <video.h>
index 019e317e75588ff4322e5af32cd9f1a7a2421623..a42a563ab7270729412916dc15231b153a00fcb0 100644 (file)
@@ -4,7 +4,6 @@
  * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
  */
 
-#include <common.h>
 #include <blk.h>
 #include <command.h>
 #include <dm.h>
index 3209e65f377fb403394b72641e170004ebe36348..e462e786a96e574e8cbaf9e4a661b6e02b9b7bd5 100644 (file)
--- a/cmd/w1.c
+++ b/cmd/w1.c
@@ -4,7 +4,6 @@
  * Microchip Technology, Inc.
  * Eugen Hristev <eugen.hristev@microchip.com>
  */
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <w1.h>
index b9fdf7ad155fae50dbb52817f1d096f5221035b3..c7a06cca181f9daafe28dfba46f935e0dd2c43f7 100644 (file)
--- a/cmd/wdt.c
+++ b/cmd/wdt.c
@@ -5,7 +5,6 @@
  * Copyright (c) 2019 Michael Walle <michael@walle.cc>
  */
 
-#include <common.h>
 #include <command.h>
 #include <dm.h>
 #include <wdt.h>
index f0d634322721065962f630d089e14a31e6887ab1..45d4ae3f719e9bf4c1bc1b0354ca4e9f2528108e 100644 (file)
--- a/cmd/wol.c
+++ b/cmd/wol.c
@@ -7,9 +7,9 @@
 /*
  * Wake-on-LAN support
  */
-#include <common.h>
 #include <command.h>
 #include <net.h>
+#include <vsprintf.h>
 
 #if defined(CONFIG_CMD_WOL)
 void wol_set_timeout(ulong);
index 84822a3e3211bde1d4482ebb31f5eb77ed0b60ae..7ca2e13ae2f8b89b6987608a75c59775a4661993 100644 (file)
@@ -4,7 +4,6 @@
  * Written by Simon Glass <sjg@chromium.org>
  */
 
-#include <common.h>
 #include <asm/cb_sysinfo.h>
 #include <command.h>
 #include <console.h>
index 82e4415b16ebffe2a810eaac2f424b5a52cca700..2620ab8ee0255ce6b97e92a42f4e0cb343aa424d 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2014-2015, Bin Meng <bmeng.cn@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <asm/fsp/fsp_support.h>
 #include <asm/global_data.h>
index 04d092dbe7ef4c5a8758d54101db5cbb47573b25..2dd30808bd109096f12146d58dc8b09659de2e57 100644 (file)
@@ -3,7 +3,6 @@
  * Copyright (C) 2014-2015, Bin Meng <bmeng.cn@gmail.com>
  */
 
-#include <common.h>
 #include <command.h>
 #include <efi.h>
 #include <uuid.h>
index 6ad7a123a4471ce653e90cafc84e4d3b12c9a529..b2afb598c73e6f970121ae332737a957057c9d82 100644 (file)
@@ -3,9 +3,9 @@
  * (C) Copyright 2014 Google, Inc
  */
 
-#include <common.h>
 #include <command.h>
 #include <log.h>
+#include <vsprintf.h>
 #include <asm/msr.h>
 #include <asm/mp.h>
 #include <asm/mtrr.h>
index 0e7eead8d192e992f13b66767a096fe1ba5479ce..1467484df8d0daa90775c640d9e46290379aa45a 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Multi Image extract
  */
-#include <common.h>
 #include <command.h>
 #include <cpu_func.h>
 #include <env.h>
index 446ac1915ef543a37fb4c99dfa8899dd66aa59f7..8ae05f910cb07143b2ae4a801b1c927342272abc 100644 (file)
--- a/cmd/xxd.c
+++ b/cmd/xxd.c
@@ -4,7 +4,6 @@
  * Roger Knecht <rknecht@pm.de>
  */
 
-#include <common.h>
 #include <command.h>
 #include <display_options.h>
 #include <fs.h>
index 27fbd1be8f750a6285a5dc0ef485f71bf848e6a9..d0724d9bea8fe8e8257d5f79f50e818dd110e720 100644 (file)
@@ -13,7 +13,6 @@
  *  ...
  */
 
-#include <common.h>
 
 #include <config.h>
 #include <command.h>
index 6ef1b56ab10b582a1c158f665719c4aa1b493e1b..2f831532c2e8de6c73b653da1d7804174c6f32e7 100644 (file)
--- a/cmd/zfs.c
+++ b/cmd/zfs.c
@@ -8,7 +8,6 @@
  * made from existing GRUB Sources by Sun, GNU and others.
  */
 
-#include <common.h>
 #include <part.h>
 #include <config.h>
 #include <command.h>
index 08afd62b973d88b505035e8fd8bcd02e9b1e593e..2d25542882291d3315b65204a1aa174ddd0a14e9 100644 (file)
--- a/cmd/zip.c
+++ b/cmd/zip.c
@@ -4,10 +4,10 @@
  * Lei Wen <leiwen@marvell.com>, Marvell Inc.
  */
 
-#include <common.h>
 #include <command.h>
 #include <env.h>
 #include <gzip.h>
+#include <vsprintf.h>
 
 static int do_zip(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
 {
index 1fee7582b90adc91e4b39b9b3720806d1cc277db..dbf20343da62447a237ec845e216517d34455ad3 100644 (file)
@@ -6,6 +6,8 @@
 #ifndef __ANDROID_AB_H
 #define __ANDROID_AB_H
 
+#include <stdbool.h>
+
 struct blk_desc;
 struct disk_partition;