Commit adb8c9b7 authored by Michal Kazior's avatar Michal Kazior Committed by Kalle Valo

ath10k: abort scan properly if wmi_scan_stop fails

Signed-off-by: default avatarMichal Kazior <michal.kazior@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 548db54c
...@@ -1590,6 +1590,10 @@ static int ath10k_abort_scan(struct ath10k *ar) ...@@ -1590,6 +1590,10 @@ static int ath10k_abort_scan(struct ath10k *ar)
ret = ath10k_wmi_stop_scan(ar, &arg); ret = ath10k_wmi_stop_scan(ar, &arg);
if (ret) { if (ret) {
ath10k_warn("could not submit wmi stop scan (%d)\n", ret); ath10k_warn("could not submit wmi stop scan (%d)\n", ret);
spin_lock_bh(&ar->data_lock);
ar->scan.in_progress = false;
ath10k_offchan_tx_purge(ar);
spin_unlock_bh(&ar->data_lock);
return -EIO; return -EIO;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment