|
@@ -3259,6 +3259,7 @@ QDF_STATUS hdd_init_ap_mode(struct hdd_adapter *adapter, bool reinit)
|
|
|
struct sap_context *sap_context = NULL;
|
|
|
int ret;
|
|
|
enum dfs_mode acs_dfs_mode;
|
|
|
+ bool acs_with_more_param = 0;
|
|
|
|
|
|
hdd_enter();
|
|
|
|
|
@@ -3279,6 +3280,14 @@ QDF_STATUS hdd_init_ap_mode(struct hdd_adapter *adapter, bool reinit)
|
|
|
wlan_hdd_get_dfs_mode(acs_dfs_mode);
|
|
|
}
|
|
|
|
|
|
+ status = ucfg_mlme_get_acs_with_more_param(hdd_ctx->psoc,
|
|
|
+ &acs_with_more_param);
|
|
|
+ if (!QDF_IS_STATUS_SUCCESS(status))
|
|
|
+ hdd_err("can't get sap acs with more param, use def");
|
|
|
+
|
|
|
+ wlan_sap_set_acs_with_more_param(hdd_ctx->mac_handle,
|
|
|
+ acs_with_more_param);
|
|
|
+
|
|
|
/* Allocate the Wireless Extensions state structure */
|
|
|
phostapdBuf = WLAN_HDD_GET_HOSTAP_STATE_PTR(adapter);
|
|
|
|