From fd1e959e91d2b0b2e853d09dd9167dfff18a616c Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Thu, 3 Aug 2017 12:22:11 -0600 Subject: env: Rename eth_setenv_enetaddr() to eth_env_set_enetaddr() Rename this function for consistency with env_set(). Signed-off-by: Simon Glass --- board/BuR/common/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board/BuR') diff --git a/board/BuR/common/common.c b/board/BuR/common/common.c index 6bea9a4383f..eb34de931ec 100644 --- a/board/BuR/common/common.c +++ b/board/BuR/common/common.c @@ -670,7 +670,7 @@ int board_eth_init(bd_t *bis) if (mac) { printf("using: %pM on ", mac); - eth_setenv_enetaddr("ethaddr", (const u8 *)mac); + eth_env_set_enetaddr("ethaddr", (const u8 *)mac); } } writel(MII_MODE_ENABLE, &cdev->miisel); -- cgit