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 /board/siemens | |
parent | cdbff9fc4002fdd47181088d5abe90e5f2fa1904 (diff) | |
download | u-boot-9fb625ce05539fe6876a59ce1dcadb76b33c6f6e.tar.gz u-boot-9fb625ce05539fe6876a59ce1dcadb76b33c6f6e.tar.bz2 u-boot-9fb625ce05539fe6876a59ce1dcadb76b33c6f6e.zip |
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 'board/siemens')
-rw-r--r-- | board/siemens/common/factoryset.c | 1 | ||||
-rw-r--r-- | board/siemens/draco/board.c | 1 | ||||
-rw-r--r-- | board/siemens/pxm2/board.c | 1 | ||||
-rw-r--r-- | board/siemens/rut/board.c | 1 | ||||
-rw-r--r-- | board/siemens/taurus/taurus.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/board/siemens/common/factoryset.c b/board/siemens/common/factoryset.c index 96615424f6..cd224a8e1c 100644 --- a/board/siemens/common/factoryset.c +++ b/board/siemens/common/factoryset.c @@ -8,6 +8,7 @@ #if !defined(CONFIG_SPL_BUILD) #include <common.h> +#include <env.h> #include <environment.h> #include <i2c.h> #include <asm/io.h> diff --git a/board/siemens/draco/board.c b/board/siemens/draco/board.c index 95b89dac0e..a6840b895b 100644 --- a/board/siemens/draco/board.c +++ b/board/siemens/draco/board.c @@ -13,6 +13,7 @@ */ #include <common.h> +#include <env.h> #include <errno.h> #include <spl.h> #include <asm/arch/cpu.h> diff --git a/board/siemens/pxm2/board.c b/board/siemens/pxm2/board.c index 1b9e83e248..0a82a5ef5c 100644 --- a/board/siemens/pxm2/board.c +++ b/board/siemens/pxm2/board.c @@ -13,6 +13,7 @@ */ #include <common.h> +#include <env.h> #include <environment.h> #include <errno.h> #include <spl.h> diff --git a/board/siemens/rut/board.c b/board/siemens/rut/board.c index 25e2ed22a6..539ecef22c 100644 --- a/board/siemens/rut/board.c +++ b/board/siemens/rut/board.c @@ -11,6 +11,7 @@ */ #include <common.h> +#include <env.h> #include <errno.h> #include <spi.h> #include <spl.h> diff --git a/board/siemens/taurus/taurus.c b/board/siemens/taurus/taurus.c index 6ea97eb4e8..d0efb67bbc 100644 --- a/board/siemens/taurus/taurus.c +++ b/board/siemens/taurus/taurus.c @@ -14,6 +14,7 @@ #include <command.h> #include <common.h> #include <dm.h> +#include <env.h> #include <environment.h> #include <asm/io.h> #include <asm/arch/at91sam9260_matrix.h> |