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/ge | |
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 'board/ge')
-rw-r--r-- | board/ge/bx50v3/bx50v3.c | 1 | ||||
-rw-r--r-- | board/ge/common/ge_common.c | 1 | ||||
-rw-r--r-- | board/ge/mx53ppd/mx53ppd.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/board/ge/bx50v3/bx50v3.c b/board/ge/bx50v3/bx50v3.c index 806525204f..917ecc4c18 100644 --- a/board/ge/bx50v3/bx50v3.c +++ b/board/ge/bx50v3/bx50v3.c @@ -9,6 +9,7 @@ #include <asm/arch/imx-regs.h> #include <asm/arch/iomux.h> #include <asm/arch/mx6-pins.h> +#include <env.h> #include <linux/errno.h> #include <linux/libfdt.h> #include <asm/gpio.h> diff --git a/board/ge/common/ge_common.c b/board/ge/common/ge_common.c index 4e6ef9c480..501c8b2daf 100644 --- a/board/ge/common/ge_common.c +++ b/board/ge/common/ge_common.c @@ -4,6 +4,7 @@ */ #include <common.h> +#include <env.h> #include <i2c.h> #include <rtc.h> diff --git a/board/ge/mx53ppd/mx53ppd.c b/board/ge/mx53ppd/mx53ppd.c index bf75bd2d46..aadf4668d9 100644 --- a/board/ge/mx53ppd/mx53ppd.c +++ b/board/ge/mx53ppd/mx53ppd.c @@ -16,6 +16,7 @@ #include <asm/arch/clock.h> #include <asm/arch/iomux-mx53.h> #include <asm/arch/clock.h> +#include <env.h> #include <linux/errno.h> #include <linux/libfdt.h> #include <asm/mach-imx/mxc_i2c.h> |