diff options
author | Simon Glass | 2019-08-01 09:46:51 -0600 |
---|---|---|
committer | Tom Rini | 2019-08-11 16:43:41 -0400 |
commit | 9fb625ce05539fe6876a59ce1dcadb76b33c6f6e (patch) | |
tree | c80c104efa35776e942d3772db3514debbd24e61 /board/LaCie | |
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/LaCie')
-rw-r--r-- | board/LaCie/net2big_v2/net2big_v2.c | 1 | ||||
-rw-r--r-- | board/LaCie/netspace_v2/netspace_v2.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/board/LaCie/net2big_v2/net2big_v2.c b/board/LaCie/net2big_v2/net2big_v2.c index fb08e504157..1609089502c 100644 --- a/board/LaCie/net2big_v2/net2big_v2.c +++ b/board/LaCie/net2big_v2/net2big_v2.c @@ -10,6 +10,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <environment.h> #include <i2c.h> #include <asm/mach-types.h> diff --git a/board/LaCie/netspace_v2/netspace_v2.c b/board/LaCie/netspace_v2/netspace_v2.c index 453c0dd4678..ba667934e42 100644 --- a/board/LaCie/netspace_v2/netspace_v2.c +++ b/board/LaCie/netspace_v2/netspace_v2.c @@ -10,6 +10,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <environment.h> #include <asm/mach-types.h> #include <asm/arch/cpu.h> |