Parcourir la source

qcacld-3.0: Remove hardcoded value and set qpower appropriately

This is a qcacld-2.0 to qcacld-3.0 propagation.

The issue is when host re-enables QPower after resume, it is setting
WMI_STA_PS_ENABLE_QPOWER to 1 (which is for QPower = 2) always and never
WMI_STA_PS_ENABLE_QPOWER to 2 (which is for QPower = 5).
This means one suspend/resume is enough to disable QPower = 5 and
change to QPower = 2.

Fix this by removing the hardcoded value of 1 and use qpower_config instead.

Change-Id: I553c1691d5d7e98c2db8c9e56e2ba68ae27af506
CRs-Fixed: 1040737
Srinivas Girigowda il y a 8 ans
Parent
commit
0855e869a2
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      core/wma/src/wma_power.c

+ 1 - 1
core/wma/src/wma_power.c

@@ -1896,7 +1896,7 @@ static void wma_set_vdev_resume_dtim(tp_wma_handle wma, uint8_t vdev_id)
 			ret = wma_unified_set_sta_ps_param(wma->wmi_handle,
 						vdev_id,
 						WMI_STA_PS_ENABLE_QPOWER,
-						1);
+						qpower_config);
 			if (QDF_IS_STATUS_ERROR(ret))
 				WMA_LOGE("Failed to enable Qpower in resume mode!");
 		}