diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:52 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 7b51b576d6db714e8668a98de67e93651e18123c (patch) | |
tree | 568a39b82f10fabc191cfe6da0fa6e17c251bd08 /cmd | |
parent | 9fb625ce05539fe6876a59ce1dcadb76b33c6f6e (diff) | |
download | u-boot-7b51b576d6db714e8668a98de67e93651e18123c.tar.gz |
env: Move env_get() to env.h
Move env_get() over to the new header file.
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bdinfo.c | 1 | ||||
-rw-r--r-- | cmd/bootefi.c | 1 | ||||
-rw-r--r-- | cmd/bootm.c | 1 | ||||
-rw-r--r-- | cmd/bootmenu.c | 1 | ||||
-rw-r--r-- | cmd/fpga.c | 1 | ||||
-rw-r--r-- | cmd/itest.c | 1 | ||||
-rw-r--r-- | cmd/mvebu/bubt.c | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index 86c17dc427..ae6006f85f 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -9,6 +9,7 @@ */ #include <common.h> #include <command.h> +#include <env.h> #include <linux/compiler.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/cmd/bootefi.c b/cmd/bootefi.c index a45bfd139f..f613cce7e2 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -11,6 +11,7 @@ #include <dm.h> #include <efi_loader.h> #include <efi_selftest.h> +#include <env.h> #include <errno.h> #include <linux/libfdt.h> #include <linux/libfdt_env.h> diff --git a/cmd/bootm.c b/cmd/bootm.c index 41b341e2e5..b326ac9b43 100644 --- a/cmd/bootm.c +++ b/cmd/bootm.c @@ -10,6 +10,7 @@ #include <common.h> #include <bootm.h> #include <command.h> +#include <env.h> #include <environment.h> #include <errno.h> #include <image.h> diff --git a/cmd/bootmenu.c b/cmd/bootmenu.c index 0ae9d5a681..3dc2c854ac 100644 --- a/cmd/bootmenu.c +++ b/cmd/bootmenu.c @@ -6,6 +6,7 @@ #include <common.h> #include <command.h> #include <ansi.h> +#include <env.h> #include <menu.h> #include <watchdog.h> #include <malloc.h> diff --git a/cmd/fpga.c b/cmd/fpga.c index 9fc2df699d..b1c7b5453b 100644 --- a/cmd/fpga.c +++ b/cmd/fpga.c @@ -9,6 +9,7 @@ */ #include <common.h> #include <command.h> +#include <env.h> #include <fpga.h> #include <fs.h> #include <gzip.h> diff --git a/cmd/itest.c b/cmd/itest.c index fd6f4166f1..8b630d71e6 100644 --- a/cmd/itest.c +++ b/cmd/itest.c @@ -14,6 +14,7 @@ #include <common.h> #include <config.h> #include <command.h> +#include <env.h> #include <mapmem.h> #include <asm/io.h> diff --git a/cmd/mvebu/bubt.c b/cmd/mvebu/bubt.c index b4d371f305..84d2d531f0 100644 --- a/cmd/mvebu/bubt.c +++ b/cmd/mvebu/bubt.c @@ -7,6 +7,7 @@ #include <config.h> #include <common.h> #include <command.h> +#include <env.h> #include <vsprintf.h> #include <errno.h> #include <dm.h> |