From e1ab8b7bc4b770429b05dbfa58d2547c31309add Mon Sep 17 00:00:00 2001 From: Siva Durga Prasad Paladugu Date: Wed, 2 Nov 2016 16:11:01 +0530 Subject: [PATCH] net: use random ethernet address if invalid and not zero Use random ethernet address if the ethernet address found is invalid, not zero and config for random address is defined. Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek Acked-by: Joe Hershberger --- net/eth-uclass.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/net/eth-uclass.c b/net/eth-uclass.c index c15cc4d90bf..ce01277ee80 100644 --- a/net/eth-uclass.c +++ b/net/eth-uclass.c @@ -511,7 +511,8 @@ static int eth_post_probe(struct udevice *dev) eth_setenv_enetaddr_by_index("eth", dev->seq, pdata->enetaddr); printf("\nWarning: %s using MAC address from ROM\n", dev->name); - } else if (is_zero_ethaddr(pdata->enetaddr)) { + } else if (is_zero_ethaddr(pdata->enetaddr) || + !is_valid_ethaddr(pdata->enetaddr)) { #ifdef CONFIG_NET_RANDOM_ETHADDR net_random_ethaddr(pdata->enetaddr); printf("\nWarning: %s (eth%d) using random MAC address - %pM\n", -- 2.47.3