diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:47:12 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | e7dcf5645f09504573f534b0fc9abbbc6ff8a5ad (patch) | |
tree | 26488fce7d5ae4e62adbdcdae9439f51876ace95 /cmd | |
parent | f030b7b2607013a1b05a696e7f010d5f8dbe4fcd (diff) | |
download | u-boot-e7dcf5645f09504573f534b0fc9abbbc6ff8a5ad.zip u-boot-e7dcf5645f09504573f534b0fc9abbbc6ff8a5ad.tar.gz u-boot-e7dcf5645f09504573f534b0fc9abbbc6ff8a5ad.tar.bz2 |
env: Drop environment.h header file where not needed
This header file is now only used by files that access internal
environment features. Drop it from various places where it is not needed.
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/aes.c | 1 | ||||
-rw-r--r-- | cmd/blob.c | 1 | ||||
-rw-r--r-- | cmd/bootm.c | 1 | ||||
-rw-r--r-- | cmd/efidebug.c | 1 | ||||
-rw-r--r-- | cmd/elf.c | 1 | ||||
-rw-r--r-- | cmd/ethsw.c | 2 | ||||
-rw-r--r-- | cmd/i2c.c | 1 | ||||
-rw-r--r-- | cmd/ini.c | 1 | ||||
-rw-r--r-- | cmd/tpm_test.c | 1 |
9 files changed, 1 insertions, 9 deletions
@@ -7,7 +7,6 @@ #include <common.h> #include <command.h> -#include <environment.h> #include <uboot_aes.h> #include <malloc.h> #include <asm/byteorder.h> @@ -6,7 +6,6 @@ #include <common.h> #include <command.h> -#include <environment.h> #include <malloc.h> #include <asm/byteorder.h> #include <linux/compiler.h> diff --git a/cmd/bootm.c b/cmd/bootm.c index b326ac9..8279f2b 100644 --- a/cmd/bootm.c +++ b/cmd/bootm.c @@ -11,7 +11,6 @@ #include <bootm.h> #include <command.h> #include <env.h> -#include <environment.h> #include <errno.h> #include <image.h> #include <malloc.h> diff --git a/cmd/efidebug.c b/cmd/efidebug.c index 961e8fa..ef97e19 100644 --- a/cmd/efidebug.c +++ b/cmd/efidebug.c @@ -9,7 +9,6 @@ #include <common.h> #include <command.h> #include <efi_loader.h> -#include <environment.h> #include <exports.h> #include <hexdump.h> #include <malloc.h> @@ -17,7 +17,6 @@ #include <command.h> #include <elf.h> #include <env.h> -#include <environment.h> #include <net.h> #include <vxworks.h> #ifdef CONFIG_X86 diff --git a/cmd/ethsw.c b/cmd/ethsw.c index 473324f..8846805 100644 --- a/cmd/ethsw.c +++ b/cmd/ethsw.c @@ -7,7 +7,7 @@ #include <common.h> #include <command.h> -#include <environment.h> +#include <env.h> #include <errno.h> #include <env_flags.h> #include <ethsw.h> @@ -71,7 +71,6 @@ #include <console.h> #include <dm.h> #include <edid.h> -#include <environment.h> #include <errno.h> #include <i2c.h> #include <malloc.h> @@ -14,7 +14,6 @@ #include <common.h> #include <command.h> #include <env.h> -#include <environment.h> #include <linux/ctype.h> #include <linux/string.h> diff --git a/cmd/tpm_test.c b/cmd/tpm_test.c index 56a5aa4..c14dd75 100644 --- a/cmd/tpm_test.c +++ b/cmd/tpm_test.c @@ -5,7 +5,6 @@ #include <common.h> #include <command.h> -#include <environment.h> #include <tpm-v1.h> #include "tpm-user-utils.h" |