summaryrefslogtreecommitdiffstats
path: root/board/ip04
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-04-18 19:09:49 +0900
committerTom Rini <trini@ti.com>2014-05-12 15:19:46 -0400
commitc42f56d96d1ec642496ee0fdf741dc13fbbec2e2 (patch)
treeb1aaa48fc2356b36d981d2732b0b25400a5a30e9 /board/ip04
parentda384a9d7628c77140023e7c095f79ecfe5a4e2d (diff)
downloadblackbird-obmc-uboot-c42f56d96d1ec642496ee0fdf741dc13fbbec2e2.tar.gz
blackbird-obmc-uboot-c42f56d96d1ec642496ee0fdf741dc13fbbec2e2.zip
blackfin: replace bfin_gen_rand_mac() with eth_random_addr()
bfin_gen_rand_mac() uses __DATE__ as the seed for random ethernet address. This makes the build non-deterministic. In the first place, it should not be implemented as a Bfin-specific function. Use eth_random_addr() instead. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Sonic Zhang <sonic.zhang@analog.com>
Diffstat (limited to 'board/ip04')
-rw-r--r--board/ip04/ip04.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/board/ip04/ip04.c b/board/ip04/ip04.c
index c8ae5128b0..ae52633426 100644
--- a/board/ip04/ip04.c
+++ b/board/ip04/ip04.c
@@ -13,7 +13,6 @@
#include <common.h>
#include <net.h>
#include <netdev.h>
-#include <asm/net.h>
int checkboard(void)
{
@@ -33,7 +32,7 @@ int misc_init_r(void)
uchar enetaddr[6];
if (!eth_getenv_enetaddr("ethaddr", enetaddr)) {
puts("Warning: Generating 'random' MAC address\n");
- bfin_gen_rand_mac(enetaddr);
+ eth_random_addr(enetaddr);
eth_setenv_enetaddr("ethaddr", enetaddr);
}
OpenPOWER on IntegriCloud