Browse Source

qcacld-3.0: set the global device mode in the pdev

Set the global device mode which can help in the memory optimization
based on the device mode.

Change-Id: I32d7c2f5be9cf8972ef9ef87ae698655629344b2
CRs-Fixed: 2809941
Arun Kumar Khandavalli 4 years ago
parent
commit
f97275eb2e
1 changed files with 3 additions and 1 deletions
  1. 3 1
      core/wma/src/wma_main.c

+ 3 - 1
core/wma/src/wma_main.c

@@ -2890,6 +2890,7 @@ QDF_STATUS wma_open(struct wlan_objmgr_psoc *psoc,
 	target_resource_config *wlan_res_cfg;
 	uint8_t delay_before_vdev_stop;
 	uint32_t self_gen_frm_pwr = 0;
+	uint32_t device_mode = cds_get_conparam();
 
 	wma_debug("Enter");
 
@@ -2929,7 +2930,7 @@ QDF_STATUS wma_open(struct wlan_objmgr_psoc *psoc,
 		goto err_free_wma_handle;
 	}
 
-	if (cds_get_conparam() != QDF_GLOBAL_FTM_MODE) {
+	if (device_mode != QDF_GLOBAL_FTM_MODE) {
 #ifdef FEATURE_WLAN_EXTSCAN
 		qdf_wake_lock_create(&wma_handle->extscan_wake_lock,
 					"wlan_extscan_wl");
@@ -3000,6 +3001,7 @@ QDF_STATUS wma_open(struct wlan_objmgr_psoc *psoc,
 	tgt_psoc_info = wlan_psoc_get_tgt_if_handle(psoc);
 
 	target_psoc_set_target_type(tgt_psoc_info, target_type);
+	target_psoc_set_device_mode(tgt_psoc_info, device_mode);
 	/* Save the WMI & HTC handle */
 	target_psoc_set_wmi_hdl(tgt_psoc_info, wmi_handle);
 	wma_handle->wmi_handle = wmi_handle;