瀏覽代碼

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 年之前
父節點
當前提交
9d7c99eccf
共有 1 個文件被更改,包括 12 次插入15 次删除
  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;
 	}
 
 }