iwlwifi: 8000: drop a print when the address is invalid
when driver takes the MAC address from the HW section and it isn't valid - print an error. Signed-off-by: Eran Harary <eran.harary@intel.com> Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
This commit is contained in:
parent
b14fc2befb
commit
ca55eb4782
|
@ -549,6 +549,9 @@ static void iwl_set_hw_address_family_8000(struct device *dev,
|
|||
data->hw_addr[1] = hw_addr[2];
|
||||
data->hw_addr[0] = hw_addr[3];
|
||||
}
|
||||
if (!is_valid_ether_addr(data->hw_addr))
|
||||
IWL_ERR_DEV(dev,
|
||||
"mac address from hw section is not valid\n");
|
||||
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue