forked from luck/tmp_suning_uos_patched
mcs7830: unify return value of .ndo_set_mac_address if address is invalid
Unify return value of .ndo_set_mac_address if the given address isn't valid. Return -EADDRNOTAVAIL as eth_mac_addr() already does if is_valid_ether_addr() fails. Signed-off-by: Danny Kukawka <danny.kukawka@bisect.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
504f9b5a6b
commit
15b8f4cf8e
|
@ -239,7 +239,7 @@ static int mcs7830_set_mac_address(struct net_device *netdev, void *p)
|
||||||
return -EBUSY;
|
return -EBUSY;
|
||||||
|
|
||||||
if (!is_valid_ether_addr(addr->sa_data))
|
if (!is_valid_ether_addr(addr->sa_data))
|
||||||
return -EINVAL;
|
return -EADDRNOTAVAIL;
|
||||||
|
|
||||||
ret = mcs7830_hif_set_mac_address(dev, addr->sa_data);
|
ret = mcs7830_hif_set_mac_address(dev, addr->sa_data);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user