summaryrefslogtreecommitdiffstats
path: root/board/buffalo/lsxl
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-04-18 19:09:48 +0900
committerTom Rini <trini@ti.com>2014-05-12 15:19:46 -0400
commitda384a9d7628c77140023e7c095f79ecfe5a4e2d (patch)
tree12e129ca586d3b14c234e6892153545df28264d5 /board/buffalo/lsxl
parentc85bb5a01a5a87c4937665816b17e281f9552413 (diff)
downloadblackbird-obmc-uboot-da384a9d7628c77140023e7c095f79ecfe5a4e2d.tar.gz
blackbird-obmc-uboot-da384a9d7628c77140023e7c095f79ecfe5a4e2d.zip
net: rename and refactor eth_rand_ethaddr() function
Some functions in include/net.h are ported from include/linux/etherdevice.h of Linux Kernel. For ex. is_zero_ether_addr() is_multicast_ether_addr() is_broadcast_ether_addr() is_valid_ether_addr(); So, we should use the same function name as that of Linux Kernel, eth_rand_addr(), for consistency. Besides, eth_rand_addr() has been implemented as an inline function. So it should not be surrounded by #ifdef CONFIG_RANDOM_MACADDR. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'board/buffalo/lsxl')
-rw-r--r--board/buffalo/lsxl/lsxl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/buffalo/lsxl/lsxl.c b/board/buffalo/lsxl/lsxl.c
index eca1683a6f..659a124b22 100644
--- a/board/buffalo/lsxl/lsxl.c
+++ b/board/buffalo/lsxl/lsxl.c
@@ -231,7 +231,7 @@ static void rescue_mode(void)
printf("Entering rescue mode..\n");
#ifdef CONFIG_RANDOM_MACADDR
if (!eth_getenv_enetaddr("ethaddr", enetaddr)) {
- eth_random_enetaddr(enetaddr);
+ eth_random_addr(enetaddr);
if (eth_setenv_enetaddr("ethaddr", enetaddr)) {
printf("Failed to set ethernet address\n");
set_led(LED_ALARM_BLINKING);
OpenPOWER on IntegriCloud