mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
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>
This commit is contained in:
parent
018f530323
commit
fd1e959e91
58 changed files with 83 additions and 83 deletions
|
@ -111,7 +111,7 @@ int misc_init_r(void)
|
|||
enetaddr[3] = (die_id_0 & 0x00ff0000) >> 16;
|
||||
enetaddr[4] = (die_id_0 & 0x0000ff00) >> 8;
|
||||
enetaddr[5] = (die_id_0 & 0x000000ff);
|
||||
eth_setenv_enetaddr("ethaddr", enetaddr);
|
||||
eth_env_set_enetaddr("ethaddr", enetaddr);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue