Parcourir la source

qcacld-3.0: Send wow wake event bitmap properly to fw

As part of WMI convergence wow wake event bitmap is sent wrongly
as enable/disable flag to fw. Fix WMA API to send wake event bitmap
properly.

Change-Id: I3b752c365e09f08104fa871c29e2629c1873b3fc
CRs-Fixed: 1033129
Rajeev Kumar il y a 8 ans
Parent
commit
4002e5b1c4
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      core/wma/src/wma_features.c

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

@@ -3051,7 +3051,7 @@ static QDF_STATUS wma_add_wow_wakeup_event(tp_wma_handle wma,
 	int ret;
 
 	ret = wmi_unified_add_wow_wakeup_event_cmd(wma->wmi_handle, vdev_id,
-				   enable, bitmap);
+			bitmap, enable);
 	if (ret) {
 		WMA_LOGE("Failed to config wow wakeup event");
 		return QDF_STATUS_E_FAILURE;