mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
ath9k: Fix return code when ath9k_hw_setpower() fails on reset
We were not reporting a status code back ath9k_hw_setpower() failed during reset so lets correct this. Reported-by: Jiri Slaby <jirislaby@gmail.com> Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
1cf69cfbe1
commit
d2a3b222cf
@ -5892,8 +5892,10 @@ bool ath9k_hw_reset(struct ath_hal *ah,
|
||||
goto bad;
|
||||
}
|
||||
|
||||
if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE))
|
||||
return false;
|
||||
if (!ath9k_hw_setpower(ah, ATH9K_PM_AWAKE)) {
|
||||
ecode = -EIO;
|
||||
goto bad;
|
||||
}
|
||||
|
||||
if (curchan)
|
||||
ath9k_hw_getnf(ah, curchan);
|
||||
|
Loading…
Reference in New Issue
Block a user