diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:48 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | 9eef56dbe34596b403e8c476c2e30ed697638f77 (patch) | |
tree | 917be500e60ca5857d583a6b9bc37753fbf829e8 /net | |
parent | 168068fb3d7da3d95bf37b21f39347f48d38497f (diff) | |
download | u-boot-9eef56dbe34596b403e8c476c2e30ed697638f77.tar.gz |
env: Move env_get_ulong() to env.h
Move env_get_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 'net')
-rw-r--r-- | net/bootp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bootp.c b/net/bootp.c index 9a2b512e4a..505489140e 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -10,6 +10,7 @@ #include <common.h> #include <command.h> +#include <env.h> #include <efi_loader.h> #include <net.h> #include <net/tftp.h> |