mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-24 05:04:00 +08:00
mvneta: drop redundant mac address check
Checking if MAC address is valid using is_valid_ether_addr() is already done in of_get_mac_address(). Signed-off-by: Luka Perkov <luka@openwrt.org> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> CC: David Miller <davem@davemloft.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
09ec0d051a
commit
6c7a9a3c78
@ -2811,7 +2811,7 @@ static int mvneta_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
dt_mac_addr = of_get_mac_address(dn);
|
||||
if (dt_mac_addr && is_valid_ether_addr(dt_mac_addr)) {
|
||||
if (dt_mac_addr) {
|
||||
mac_from = "device tree";
|
||||
memcpy(dev->dev_addr, dt_mac_addr, ETH_ALEN);
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user