diff options
Diffstat (limited to 'board/gumstix/pepper/board.c')
-rw-r--r-- | board/gumstix/pepper/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/gumstix/pepper/board.c b/board/gumstix/pepper/board.c index f644f8188b..beb2fac374 100644 --- a/board/gumstix/pepper/board.c +++ b/board/gumstix/pepper/board.c @@ -165,7 +165,7 @@ int board_eth_init(bd_t *bis) mac_addr[3] = (mac_hi & 0xFF000000) >> 24; mac_addr[4] = mac_lo & 0xFF; mac_addr[5] = (mac_lo & 0xFF00) >> 8; - if (is_valid_ether_addr(mac_addr)) + if (is_valid_ethaddr(mac_addr)) eth_setenv_enetaddr("ethaddr", mac_addr); } |