|
@@ -3051,23 +3051,7 @@ static int __wlan_hdd_cfg80211_do_acs(struct wiphy *wiphy,
|
|
|
qdf_event_reset(&adapter->acs_complete_event);
|
|
|
}
|
|
|
|
|
|
- qdf_mutex_acquire(&hdd_ctx->regulatory_status_lock);
|
|
|
- if (hdd_ctx->is_regulatory_update_in_progress) {
|
|
|
- qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
- hdd_debug("waiting for channel list to update");
|
|
|
- qdf_wait_for_event_completion(&hdd_ctx->regulatory_update_event,
|
|
|
- CHANNEL_LIST_UPDATE_TIMEOUT);
|
|
|
- /* In case of set country failure in FW, response never comes
|
|
|
- * so wait the full timeout, then set in_progress to false.
|
|
|
- * If the response comes back, in_progress will already be set
|
|
|
- * to false anyways.
|
|
|
- */
|
|
|
- qdf_mutex_acquire(&hdd_ctx->regulatory_status_lock);
|
|
|
- hdd_ctx->is_regulatory_update_in_progress = false;
|
|
|
- qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
- } else {
|
|
|
- qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
- }
|
|
|
+ hdd_reg_wait_for_country_change(hdd_ctx);
|
|
|
|
|
|
ret = wlan_cfg80211_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_ACS_MAX, data,
|
|
|
data_len,
|
|
@@ -20994,23 +20978,7 @@ static int __wlan_hdd_cfg80211_connect(struct wiphy *wiphy,
|
|
|
if (policy_mgr_is_sta_mon_concurrency(hdd_ctx->psoc))
|
|
|
return -EINVAL;
|
|
|
|
|
|
- qdf_mutex_acquire(&hdd_ctx->regulatory_status_lock);
|
|
|
- if (hdd_ctx->is_regulatory_update_in_progress) {
|
|
|
- qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
- hdd_debug("waiting for channel list to update");
|
|
|
- qdf_wait_for_event_completion(&hdd_ctx->regulatory_update_event,
|
|
|
- CHANNEL_LIST_UPDATE_TIMEOUT);
|
|
|
- /* In case of set country failure in FW, response never comes
|
|
|
- * so wait the full timeout, then set in_progress to false.
|
|
|
- * If the response comes back, in_progress will already be set
|
|
|
- * to false anyways.
|
|
|
- */
|
|
|
- qdf_mutex_acquire(&hdd_ctx->regulatory_status_lock);
|
|
|
- hdd_ctx->is_regulatory_update_in_progress = false;
|
|
|
- qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
- } else {
|
|
|
- qdf_mutex_release(&hdd_ctx->regulatory_status_lock);
|
|
|
- }
|
|
|
+ hdd_reg_wait_for_country_change(hdd_ctx);
|
|
|
|
|
|
if (req->bssid)
|
|
|
bssid = req->bssid;
|