diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:44 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 3f989e7b0e43402d0a50e19939e4f57374319734 (patch) | |
tree | 7e225bdfdeed2562cf00c8c9a5ee9e3757b41261 /env/common.c | |
parent | 4bfd1f5d626778dd17f9827e5c462cc2697e0e90 (diff) | |
download | u-boot-3f989e7b0e43402d0a50e19939e4f57374319734.tar.gz |
env: Move env_relocate() to env.h
Move env_relocate() 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 'env/common.c')
-rw-r--r-- | env/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/env/common.c b/env/common.c index bd340fe9d5..1fbc4a874d 100644 --- a/env/common.c +++ b/env/common.c @@ -9,6 +9,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <environment.h> #include <linux/stddef.h> #include <search.h> |