summaryrefslogtreecommitdiff
path: root/board/samtec
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2017-08-03 18:22:11 (GMT)
committerTom Rini <trini@konsulko.com>2017-08-16 12:23:56 (GMT)
commitfd1e959e91d2b0b2e853d09dd9167dfff18a616c (patch)
tree1d59086cd330cd9c061521f9564edfb9d75e1dc9 /board/samtec
parent018f530323b2cc41be05be5b12375d3648f06554 (diff)
downloadu-boot-fd1e959e91d2b0b2e853d09dd9167dfff18a616c.tar.xz
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/samtec')
-rw-r--r--board/samtec/vining_2000/vining_2000.c2
-rw-r--r--board/samtec/vining_fpga/socfpga.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/board/samtec/vining_2000/vining_2000.c b/board/samtec/vining_2000/vining_2000.c
index d15f2a9..125f6e7 100644
--- a/board/samtec/vining_2000/vining_2000.c
+++ b/board/samtec/vining_2000/vining_2000.c
@@ -132,7 +132,7 @@ int board_eth_init(bd_t *bis)
/* just to get secound mac address */
imx_get_mac_from_fuse(1, eth1addr);
if (!getenv("eth1addr") && is_valid_ethaddr(eth1addr))
- eth_setenv_enetaddr("eth1addr", eth1addr);
+ eth_env_set_enetaddr("eth1addr", eth1addr);
imx_iomux_v3_setup_multiple_pads(fec1_pads, ARRAY_SIZE(fec1_pads));
diff --git a/board/samtec/vining_fpga/socfpga.c b/board/samtec/vining_fpga/socfpga.c
index 2ee6d3b..760fc71 100644
--- a/board/samtec/vining_fpga/socfpga.c
+++ b/board/samtec/vining_fpga/socfpga.c
@@ -93,7 +93,7 @@ int misc_init_r(void)
/* Set ethernet address from EEPROM. */
if (!getenv("ethaddr") && is_valid_ethaddr(&data[0x62]))
- eth_setenv_enetaddr("ethaddr", &data[0x62]);
+ eth_env_set_enetaddr("ethaddr", &data[0x62]);
return 0;
}