From: oliver@schinagl.nl Date: Fri, 25 Nov 2016 15:30:23 +0000 (+0100) Subject: net: core: cosmetic: A MAC address is not limited to SROM X-Git-Tag: v2017.03-rc2~10^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26d40b0a17f86f748803f3c60926e614177117b7;p=thirdparty%2Fu-boot.git net: core: cosmetic: A MAC address is not limited to SROM Currently, we print that the MAC from the SROM does not match. It can be many forms of ROM, so lets drop the S. Signed-off-by: Olliver Schinagl Acked-by: Joe Hershberger --- diff --git a/net/eth-uclass.c b/net/eth-uclass.c index 140e47d52d3..c3cc3152a28 100644 --- a/net/eth-uclass.c +++ b/net/eth-uclass.c @@ -500,7 +500,7 @@ static int eth_post_probe(struct udevice *dev) memcmp(pdata->enetaddr, env_enetaddr, ARP_HLEN)) { printf("\nWarning: %s MAC addresses don't match:\n", dev->name); - printf("Address in SROM is %pM\n", + printf("Address in ROM is %pM\n", pdata->enetaddr); printf("Address in environment is %pM\n", env_enetaddr);