Forráskód Böngészése

qcacld-3.0: Refactor set AP power type logic

Currently wlan_reg_decide_6g_ap_pwr_type is
getting invoked from south bound and north bound
callback path, because of this pdev channel
is computed unnecessarily two times and
the AP power type obtained is not used in
reg_populate_secondary_cur_chan_list.

To address these issues, set AP power type
while propagating master channel list to pdev and
use this power type value to populate secondary
channel list.

CRs-Fixed: 3609366
Change-Id: I5bdc69d42cd09c0d875b8fb55d14f6ee10a175b2
Asutosh Mohapatra 1 éve
szülő
commit
2aac379486

+ 0 - 1
components/cmn_services/policy_mgr/src/wlan_policy_mgr_pcl.c

@@ -546,7 +546,6 @@ policy_mgr_reg_chan_change_callback(struct wlan_objmgr_psoc *psoc,
 		return;
 	}
 
-	wlan_reg_decide_6g_ap_pwr_type(pdev);
 	policy_mgr_update_valid_ch_freq_list(pm_ctx, chan_list, false);
 
 	if (!avoid_freq_ind) {

+ 0 - 4
core/hdd/src/wlan_hdd_hostapd.c

@@ -4364,7 +4364,6 @@ QDF_STATUS hdd_init_ap_mode(struct hdd_adapter *adapter,
 	bool acs_with_more_param = 0;
 	uint8_t enable_sifs_burst = 0;
 	bool is_6g_sap_fd_enabled = 0;
-	enum reg_6g_ap_type ap_pwr_type;
 	struct wlan_objmgr_vdev *vdev;
 
 	hdd_enter();
@@ -4397,9 +4396,6 @@ QDF_STATUS hdd_init_ap_mode(struct hdd_adapter *adapter,
 	/* Allocate the Wireless Extensions state structure */
 	phostapdBuf = WLAN_HDD_GET_HOSTAP_STATE_PTR(adapter->deflink);
 
-	ap_pwr_type = wlan_reg_decide_6g_ap_pwr_type(hdd_ctx->pdev);
-	hdd_debug("selecting AP power type %d", ap_pwr_type);
-
 	/* Zero the memory.  This zeros the profile structure. */
 	memset(phostapdBuf, 0, sizeof(struct hdd_hostapd_state));