mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-29 16:10:58 +00:00
am335x: display msg when reading MAC from efuse
When ethaddr is not set in environment the MAC address is read from efuse. The message was only printed in debug case, but this message could be of interest for the ordinary user, so printf it. Signed-off-by: Lars Poeschel <poeschel@lemonage.de>
This commit is contained in:
parent
1c1b7c3739
commit
3ec36b34fe
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ int board_eth_init(bd_t *bis)
|
|||
uint32_t mac_hi, mac_lo;
|
||||
|
||||
if (!eth_getenv_enetaddr("ethaddr", mac_addr)) {
|
||||
debug("<ethaddr> not set. Reading from E-fuse\n");
|
||||
printf("<ethaddr> not set. Reading from E-fuse\n");
|
||||
/* try reading mac address from efuse */
|
||||
mac_lo = readl(&cdev->macid0l);
|
||||
mac_hi = readl(&cdev->macid0h);
|
||||
|
|
Loading…
Reference in a new issue