diff options
author | Simon Glass <sjg@chromium.org> | 2019-08-01 09:46:53 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-08-11 16:43:41 -0400 |
commit | b79cf1af0d1cf175c4414ea1b8465747431d77cf (patch) | |
tree | 11c7b46f5b2781f552a909ed310530203b89ab44 /include/environment.h | |
parent | 7b51b576d6db714e8668a98de67e93651e18123c (diff) | |
download | u-boot-b79cf1af0d1cf175c4414ea1b8465747431d77cf.tar.gz |
env: Move eth_env_get/set_enetaddr() to env.h
Move these two functions 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 'include/environment.h')
-rw-r--r-- | include/environment.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/environment.h b/include/environment.h index de67cf4f0e..77915f459e 100644 --- a/include/environment.h +++ b/include/environment.h @@ -326,8 +326,6 @@ int env_erase(void); void env_fix_drivers(void); void eth_parse_enetaddr(const char *addr, uint8_t *enetaddr); -int eth_env_get_enetaddr(const char *name, uint8_t *enetaddr); -int eth_env_set_enetaddr(const char *name, const uint8_t *enetaddr); #endif /* DO_DEPS_ONLY */ |