diff options
author | Fabio Estevam | 2023-10-20 09:41:51 -0300 |
---|---|---|
committer | Tom Rini | 2023-11-05 16:11:38 -0500 |
commit | 7907cf80049df56d7a8f66c91626154986fa59e2 (patch) | |
tree | 5c55d82565f754034ec1e34238484b088e851414 /net/eth-uclass.c | |
parent | 9e4cabcf4356d13ad0abb602278b34e4a7ca57ae (diff) |
net: eth-uclass: Improve error message when MAC is not found
While bringinp up a new board without the MAC fuses programmed,
the following error message was observed:
Error: ethernet@30bf0000 address not set.
Improve the error message to make it clearer the reason of
the failure.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Diffstat (limited to 'net/eth-uclass.c')
-rw-r--r-- | net/eth-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/eth-uclass.c b/net/eth-uclass.c index 565db15b5a9..3d0ec91dfa4 100644 --- a/net/eth-uclass.c +++ b/net/eth-uclass.c @@ -598,7 +598,7 @@ static int eth_post_probe(struct udevice *dev) eth_env_set_enetaddr_by_index("eth", dev_seq(dev), pdata->enetaddr); #else - printf("\nError: %s address not set.\n", + printf("\nError: %s No valid MAC address found.\n", dev->name); return -EINVAL; #endif |