diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:51 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 9fb625ce05539fe6876a59ce1dcadb76b33c6f6e (patch) | |
tree | c80c104efa35776e942d3772db3514debbd24e61 /common | |
parent | cdbff9fc4002fdd47181088d5abe90e5f2fa1904 (diff) | |
download | u-boot-9fb625ce05539fe6876a59ce1dcadb76b33c6f6e.tar.gz |
env: Move env_set() to env.h
Move env_set() 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 'common')
-rw-r--r-- | common/cli_hush.c | 1 | ||||
-rw-r--r-- | common/console.c | 1 | ||||
-rw-r--r-- | common/hash.c | 1 | ||||
-rw-r--r-- | common/hwconfig.c | 1 | ||||
-rw-r--r-- | common/image-android.c | 1 | ||||
-rw-r--r-- | common/main.c | 1 | ||||
-rw-r--r-- | common/spl/spl_dfu.c | 1 | ||||
-rw-r--r-- | common/update.c | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/common/cli_hush.c b/common/cli_hush.c index 955e8fe536..8f86e4aa4a 100644 --- a/common/cli_hush.c +++ b/common/cli_hush.c @@ -75,6 +75,7 @@ #define __U_BOOT__ #ifdef __U_BOOT__ +#include <env.h> #include <malloc.h> /* malloc, free, realloc*/ #include <linux/ctype.h> /* isalpha, isdigit */ #include <common.h> /* readline */ diff --git a/common/console.c b/common/console.c index d086feabb1..0f7e0916cd 100644 --- a/common/console.c +++ b/common/console.c @@ -8,6 +8,7 @@ #include <console.h> #include <debug_uart.h> #include <dm.h> +#include <env.h> #include <stdarg.h> #include <iomux.h> #include <malloc.h> diff --git a/common/hash.c b/common/hash.c index 413a5bfcda..d33e329897 100644 --- a/common/hash.c +++ b/common/hash.c @@ -12,6 +12,7 @@ #ifndef USE_HOSTCC #include <common.h> #include <command.h> +#include <env.h> #include <malloc.h> #include <mapmem.h> #include <hw_sha.h> diff --git a/common/hwconfig.c b/common/hwconfig.c index e9e956a322..72f3c4e0fa 100644 --- a/common/hwconfig.c +++ b/common/hwconfig.c @@ -11,6 +11,7 @@ #ifndef HWCONFIG_TEST #include <config.h> #include <common.h> +#include <env.h> #include <exports.h> #include <hwconfig.h> #include <linux/types.h> diff --git a/common/image-android.c b/common/image-android.c index 6c9568a655..264bf90007 100644 --- a/common/image-android.c +++ b/common/image-android.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <env.h> #include <image.h> #include <android_image.h> #include <malloc.h> diff --git a/common/main.c b/common/main.c index ce39c8d189..3a657c3d9a 100644 --- a/common/main.c +++ b/common/main.c @@ -10,6 +10,7 @@ #include <autoboot.h> #include <cli.h> #include <console.h> +#include <env.h> #include <version.h> /* diff --git a/common/spl/spl_dfu.c b/common/spl/spl_dfu.c index c0225dc4e1..a05b867567 100644 --- a/common/spl/spl_dfu.c +++ b/common/spl/spl_dfu.c @@ -6,6 +6,7 @@ * Ravi B <ravibabu@ti.com> */ #include <common.h> +#include <env.h> #include <spl.h> #include <linux/compiler.h> #include <errno.h> diff --git a/common/update.c b/common/update.c index f237ea53bb..457b29f42a 100644 --- a/common/update.c +++ b/common/update.c @@ -17,6 +17,7 @@ #endif #include <command.h> +#include <env.h> #include <flash.h> #include <net.h> #include <net/tftp.h> |