mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
arm: mx6: cm-fx6: change dtb node for ethaddr
When passing eth address to Linux via dtb, the "local-mac-address" property should be set for "/soc/aips-bus@02100000/ethernet@02188000", not "/fec". Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il> Cc: Stefano Babic <sbabic@denx.de> Cc: Igor Grinberg <grinberg@compulab.co.il> Acked-by: Igor Grinberg <grinberg@compulab.co.il>
This commit is contained in:
parent
508a6edea9
commit
cc67f4a63f
1 changed files with 3 additions and 2 deletions
|
@ -464,8 +464,9 @@ int ft_board_setup(void *blob, bd_t *bd)
|
||||||
|
|
||||||
/* MAC addr */
|
/* MAC addr */
|
||||||
if (eth_getenv_enetaddr("ethaddr", enetaddr)) {
|
if (eth_getenv_enetaddr("ethaddr", enetaddr)) {
|
||||||
fdt_find_and_setprop(blob, "/fec", "local-mac-address",
|
fdt_find_and_setprop(blob,
|
||||||
enetaddr, 6, 1);
|
"/soc/aips-bus@02100000/ethernet@02188000",
|
||||||
|
"local-mac-address", enetaddr, 6, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue