|
@@ -4861,8 +4861,7 @@ static struct ieee80211_channel *wlan_hdd_get_wiphy_channel(
|
|
|
return wiphy_channel;
|
|
|
}
|
|
|
|
|
|
-int wlan_hdd_restore_channels(struct hdd_context *hdd_ctx,
|
|
|
- bool notify_sap_event)
|
|
|
+int wlan_hdd_restore_channels(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
struct hdd_cache_channels *cache_chann;
|
|
|
struct wiphy *wiphy;
|
|
@@ -4918,10 +4917,8 @@ int wlan_hdd_restore_channels(struct hdd_context *hdd_ctx,
|
|
|
}
|
|
|
|
|
|
qdf_mutex_release(&hdd_ctx->cache_channel_lock);
|
|
|
- if (notify_sap_event)
|
|
|
- ucfg_reg_notify_sap_event(hdd_ctx->pdev, false);
|
|
|
- else
|
|
|
- ucfg_reg_restore_cached_channels(hdd_ctx->pdev);
|
|
|
+
|
|
|
+ ucfg_reg_restore_cached_channels(hdd_ctx->pdev);
|
|
|
status = sme_update_channel_list(hdd_ctx->mac_handle);
|
|
|
if (status)
|
|
|
hdd_err("Can't Restore channel list");
|
|
@@ -4993,7 +4990,7 @@ int wlan_hdd_disable_channels(struct hdd_context *hdd_ctx)
|
|
|
}
|
|
|
|
|
|
qdf_mutex_release(&hdd_ctx->cache_channel_lock);
|
|
|
- status = ucfg_reg_notify_sap_event(hdd_ctx->pdev, true);
|
|
|
+ ucfg_reg_disable_cached_channels(hdd_ctx->pdev);
|
|
|
status = sme_update_channel_list(hdd_ctx->mac_handle);
|
|
|
|
|
|
hdd_exit();
|
|
@@ -5005,8 +5002,7 @@ int wlan_hdd_disable_channels(struct hdd_context *hdd_ctx)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-int wlan_hdd_restore_channels(struct hdd_context *hdd_ctx,
|
|
|
- bool notify_sap_event)
|
|
|
+int wlan_hdd_restore_channels(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
return 0;
|
|
|
}
|