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/Arcturus | |
parent | cdbff9fc4002fdd47181088d5abe90e5f2fa1904 (diff) |
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/Arcturus')
-rw-r--r-- | board/Arcturus/ucp1020/cmd_arc.c | 1 | ||||
-rw-r--r-- | board/Arcturus/ucp1020/ucp1020.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/Arcturus/ucp1020/cmd_arc.c b/board/Arcturus/ucp1020/cmd_arc.c index 7a510c61fb..755f569d13 100644 --- a/board/Arcturus/ucp1020/cmd_arc.c +++ b/board/Arcturus/ucp1020/cmd_arc.c @@ -10,6 +10,7 @@ #include <common.h> #include <div64.h> +#include <env.h> #include <malloc.h> #include <spi_flash.h> #include <mmc.h> diff --git a/board/Arcturus/ucp1020/ucp1020.c b/board/Arcturus/ucp1020/ucp1020.c index 54fd1782cb..6a880c97bc 100644 --- a/board/Arcturus/ucp1020/ucp1020.c +++ b/board/Arcturus/ucp1020/ucp1020.c @@ -10,6 +10,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <hwconfig.h> #include <pci.h> #include <i2c.h> |