diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:50 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | cdbff9fc4002fdd47181088d5abe90e5f2fa1904 (patch) | |
tree | 833d690735da8fe451d8efd805c0c8ae4d0da50c /arch | |
parent | 6bf6dbee0111d40b4b37799d24eed8b6af7d7b29 (diff) | |
download | u-boot-cdbff9fc4002fdd47181088d5abe90e5f2fa1904.tar.gz u-boot-cdbff9fc4002fdd47181088d5abe90e5f2fa1904.tar.bz2 u-boot-cdbff9fc4002fdd47181088d5abe90e5f2fa1904.zip |
env: Move env_get_hex() to env.h
Move env_get_hex() 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 'arch')
-rw-r--r-- | arch/x86/lib/zimage.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/lib/zimage.c b/arch/x86/lib/zimage.c index 230b38e938..6a6258a505 100644 --- a/arch/x86/lib/zimage.c +++ b/arch/x86/lib/zimage.c @@ -13,6 +13,7 @@ */ #include <common.h> +#include <env.h> #include <malloc.h> #include <asm/acpi_table.h> #include <asm/io.h> |