summaryrefslogtreecommitdiff
path: root/board/ti
diff options
context:
space:
mode:
authorLars Poeschel <poeschel@lemonage.de>2013-01-11 00:53:32 +0000
committerTom Rini <trini@ti.com>2013-02-07 10:36:26 -0500
commit3ec36b34fea10c793f6f41859cfcff083d6ee8a3 (patch)
treebfebd6f755af9f274007aa337c051d5ea25fa67b /board/ti
parent1c1b7c3739095da7d73fef3adbe9f187791ca9ff (diff)
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>
Diffstat (limited to 'board/ti')
-rw-r--r--board/ti/am335x/board.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/ti/am335x/board.c b/board/ti/am335x/board.c
index ed4229e258..7332601cbc 100644
--- a/board/ti/am335x/board.c
+++ b/board/ti/am335x/board.c
@@ -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);