diff options
author | Petr Štetiar <ynezz@true.cz> | 2019-05-03 16:27:12 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-05-05 21:47:07 -0700 |
commit | d31a36b5f407d796d121af745730712337cd32a1 (patch) | |
tree | a3c34575135ffa786021c3cd823697a074f2683c /drivers/net/wireless/ath | |
parent | adfb3cb2c52e7bf215ac5d97344e4ed57ab9ce9f (diff) | |
download | linux-d31a36b5f407d796d121af745730712337cd32a1.tar.bz2 |
net: wireless: support of_get_mac_address new ERR_PTR error
There was NVMEM support added to of_get_mac_address, so it could now return
ERR_PTR encoded error values, so we need to adjust all current users of
of_get_mac_address to this new fact.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/init.c b/drivers/net/wireless/ath/ath9k/init.c index 98141b699c88..a04d8616fe09 100644 --- a/drivers/net/wireless/ath/ath9k/init.c +++ b/drivers/net/wireless/ath/ath9k/init.c @@ -642,7 +642,7 @@ static int ath9k_of_init(struct ath_softc *sc) } mac = of_get_mac_address(np); - if (mac) + if (!IS_ERR(mac)) ether_addr_copy(common->macaddr, mac); return 0; |