diff options
| author | Seung-Woo Kim <[email protected]> | 2023-08-11 16:12:25 +0900 |
|---|---|---|
| committer | Leo Yu-Chi Liang <[email protected]> | 2023-09-05 10:53:29 +0800 |
| commit | 71914337ef579bb22705d4b88fee6b1448f7a9b1 (patch) | |
| tree | 6e7d36b461d064a16c2e2eebf2f95dfebb9efba4 | |
| parent | 493fd3363f6da6a784514657d689c7cda0f390d5 (diff) | |
eeprom: starfive: set eth0 mac address properly
fdt_fixup_ethernet() sets eth0 mac address from ethaddr. Set
ethaddr to environment instead of eth0addr.
Signed-off-by: Seung-Woo Kim <[email protected]>
Reviewed-by: Leo Yu-Chi Liang <[email protected]>
| -rw-r--r-- | board/starfive/visionfive2/visionfive2-i2c-eeprom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/starfive/visionfive2/visionfive2-i2c-eeprom.c b/board/starfive/visionfive2/visionfive2-i2c-eeprom.c index befe7888c40..c334d98cf6e 100644 --- a/board/starfive/visionfive2/visionfive2-i2c-eeprom.c +++ b/board/starfive/visionfive2/visionfive2-i2c-eeprom.c @@ -504,7 +504,7 @@ int mac_read_from_eeprom(void) } // 1, setup ethaddr env - eth_env_set_enetaddr("eth0addr", pbuf.eeprom.atom4.data.mac0_addr); + eth_env_set_enetaddr("ethaddr", pbuf.eeprom.atom4.data.mac0_addr); eth_env_set_enetaddr("eth1addr", pbuf.eeprom.atom4.data.mac1_addr); /** |
