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 /arch/arm/mach-omap2/utils.c | |
parent | 018f530323b2cc41be05be5b12375d3648f06554 (diff) | |
download | u-boot-fd1e959e91d2b0b2e853d09dd9167dfff18a616c.tar.gz u-boot-fd1e959e91d2b0b2e853d09dd9167dfff18a616c.tar.bz2 u-boot-fd1e959e91d2b0b2e853d09dd9167dfff18a616c.zip |
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 'arch/arm/mach-omap2/utils.c')
-rw-r--r-- | arch/arm/mach-omap2/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/utils.c b/arch/arm/mach-omap2/utils.c index b7074638bd..c03e93878d 100644 --- a/arch/arm/mach-omap2/utils.c +++ b/arch/arm/mach-omap2/utils.c @@ -214,7 +214,7 @@ void omap_die_id_usbethaddr(void) mac[4] = die_id[0] & 0xff; mac[5] = (die_id[0] >> 8) & 0xff; - eth_setenv_enetaddr("usbethaddr", mac); + eth_env_set_enetaddr("usbethaddr", mac); } } |