Browse Source

qcacld-3.0: Fix sme_process_ready_to_ext_wow() context param

Currently sme_process_ready_to_ext_wow() takes a tHalHandle context
param.  However this is a static internal function, and hence it
should be using the "real" context pointer type tpAniSirGlobal instead
of the opaque reference tHalHandle, so update the API to expect
tpAniSirGlobal (which is what is already being passed by
sme_process_msg()).

Change-Id: I06a2c00334867902e185726d1c7b3ba8c8cb08f5
CRs-Fixed: 2269965
Jeff Johnson 6 years ago
parent
commit
9d7c99eccf
1 changed files with 12 additions and 15 deletions
  1. 12 15
      core/sme/src/common/sme_api.c

+ 12 - 15
core/sme/src/common/sme_api.c

@@ -1103,31 +1103,28 @@ static void sme_process_ready_to_suspend(tpAniSirGlobal mac,
 
 /**
  * sme_process_ready_to_ext_wow() - inform ready to ExtWoW indication.
- * @hHal - Handle returned by mac_open.
- * @pReadyToExtWoW - Parameter received along with ready to Ext WoW
- *		     indication from WMA.
+ * @mac: Global MAC context
+ * @indication: ready to Ext WoW indication from lower layer
  *
  * On getting ready to Ext WoW indication, this function calls callback
- * registered (HDD callback)with SME to inform ready to ExtWoW indication.
+ * registered (HDD callback) with SME to inform ready to ExtWoW indication.
  *
  * Return: None
  */
-static void sme_process_ready_to_ext_wow(tHalHandle hHal,
-					 tpSirReadyToExtWoWInd pReadyToExtWoW)
+static void sme_process_ready_to_ext_wow(tpAniSirGlobal mac,
+					 tpSirReadyToExtWoWInd indication)
 {
-	tpAniSirGlobal pMac = PMAC_STRUCT(hHal);
-
-	if (NULL == pMac) {
+	if (!mac) {
 		QDF_TRACE(QDF_MODULE_ID_SME, QDF_TRACE_LEVEL_FATAL,
-			  "%s: pMac is null", __func__);
+			  "%s: mac is null", __func__);
 		return;
 	}
 
-	if (NULL != pMac->readyToExtWoWCallback) {
-		pMac->readyToExtWoWCallback(pMac->readyToExtWoWContext,
-					    pReadyToExtWoW->status);
-		pMac->readyToExtWoWCallback = NULL;
-		pMac->readyToExtWoWContext = NULL;
+	if (NULL != mac->readyToExtWoWCallback) {
+		mac->readyToExtWoWCallback(mac->readyToExtWoWContext,
+					   indication->status);
+		mac->readyToExtWoWCallback = NULL;
+		mac->readyToExtWoWContext = NULL;
 	}
 
 }