diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:47 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 168068fb3d7da3d95bf37b21f39347f48d38497f (patch) | |
tree | f67394a7a39bb129368ba8df6c7978f4b0a0c344 /board/BuR | |
parent | c7694dd4837ba12db3bcda872a1047a44566e0e8 (diff) | |
download | u-boot-168068fb3d7da3d95bf37b21f39347f48d38497f.tar.gz |
env: Move env_set_ulong() to env.h
Move env_set_ulong() over to the new header file.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'board/BuR')
-rw-r--r-- | board/BuR/brppt1/board.c | 1 | ||||
-rw-r--r-- | board/BuR/common/br_resetc.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/BuR/brppt1/board.c b/board/BuR/brppt1/board.c index b8ab19c0e7..ef4f5c9501 100644 --- a/board/BuR/brppt1/board.c +++ b/board/BuR/brppt1/board.c @@ -10,6 +10,7 @@ */ #include <common.h> +#include <env.h> #include <errno.h> #include <spl.h> #include <asm/arch/cpu.h> diff --git a/board/BuR/common/br_resetc.c b/board/BuR/common/br_resetc.c index c8cc73ab14..c0e7fb65b2 100644 --- a/board/BuR/common/br_resetc.c +++ b/board/BuR/common/br_resetc.c @@ -6,6 +6,7 @@ * B&R Industrial Automation GmbH - http://www.br-automation.com/ * */ #include <common.h> +#include <env.h> #include <errno.h> #include <i2c.h> #include <dm/uclass.h> |