summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath
diff options
context:
space:
mode:
authorYang Yingliang <yangyingliang@huawei.com>2022-04-12 16:15:53 +0300
committerKalle Valo <quic_kvalo@quicinc.com>2022-04-23 12:28:07 +0300
commit605194411d7379645ed44e447c4b804a0b476109 (patch)
treec62b675fd0ebb103298a28c45a0c0bc12494a8d3 /drivers/net/wireless/ath
parent652f69ed9c1b4f8ef4ea9d6738f1e6263a5ff26d (diff)
downloadlinux-605194411d7379645ed44e447c4b804a0b476109.tar.bz2
ath11k: fix missing unlock on error in ath11k_wow_op_resume()
Add the missing unlock before return from function ath11k_wow_op_resume() in the error handling case. Fixes: 90bf5c8d0f7e ("ath11k: purge rx pktlog when entering WoW") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Signed-off-by: Kalle Valo <quic_kvalo@quicinc.com> Link: https://lore.kernel.org/r/20220408030912.3087293-1-yangyingliang@huawei.com
Diffstat (limited to 'drivers/net/wireless/ath')
-rw-r--r--drivers/net/wireless/ath/ath11k/wow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath11k/wow.c b/drivers/net/wireless/ath/ath11k/wow.c
index 6c2611f93739..9d088cebef03 100644
--- a/drivers/net/wireless/ath/ath11k/wow.c
+++ b/drivers/net/wireless/ath/ath11k/wow.c
@@ -758,7 +758,7 @@ int ath11k_wow_op_resume(struct ieee80211_hw *hw)
ret = ath11k_dp_rx_pktlog_start(ar->ab);
if (ret) {
ath11k_warn(ar->ab, "failed to start rx pktlog from wow: %d\n", ret);
- return ret;
+ goto exit;
}
ret = ath11k_wow_wakeup(ar->ab);