diff options
author | Simon Glass <sjg@chromium.org> | 2017-08-03 12:22:11 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-16 08:23:56 -0400 |
commit | fd1e959e91d2b0b2e853d09dd9167dfff18a616c (patch) | |
tree | 1d59086cd330cd9c061521f9564edfb9d75e1dc9 /board/spear | |
parent | 018f530323b2cc41be05be5b12375d3648f06554 (diff) | |
download | u-boot-fd1e959e91d2b0b2e853d09dd9167dfff18a616c.tar.gz |
env: Rename eth_setenv_enetaddr() to eth_env_set_enetaddr()
Rename this function for consistency with env_set().
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/spear')
-rw-r--r-- | board/spear/common/spr_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/spear/common/spr_misc.c b/board/spear/common/spr_misc.c index 3bb4ff14d9..67de28e7ea 100644 --- a/board/spear/common/spr_misc.c +++ b/board/spear/common/spr_misc.c @@ -54,7 +54,7 @@ int misc_init_r(void) uchar mac_id[6]; if (!eth_getenv_enetaddr("ethaddr", mac_id) && !i2c_read_mac(mac_id)) - eth_setenv_enetaddr("ethaddr", mac_id); + eth_env_set_enetaddr("ethaddr", mac_id); #endif env_set("verify", "n"); |