Commit 60519441 authored by Yang Yingliang's avatar Yang Yingliang Committed by Kalle Valo
Browse files

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: 90bf5c8d ("ath11k: purge rx pktlog when entering WoW")
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarYang Yingliang <yangyingliang@huawei.com>
Signed-off-by: default avatarKalle Valo <quic_kvalo@quicinc.com>
Link: https://lore.kernel.org/r/20220408030912.3087293-1-yangyingliang@huawei.com
parent 652f69ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);