prima: change prototype of pWDAAckFnTxComp to pass the void pointer

As part of enhanced tx bd completion changes, Changing the
prototype of pWDAAckFnTxComp to pass the void pointer. This will
help to use this callback in both older and newer implementation.

Change-Id: Ie22f9e93e3f8ab5ac38fe98d0fb7cceec6c5356f
CRs-Fixed: 806189
diff --git a/CORE/MAC/src/pe/lim/limSendManagementFrames.c b/CORE/MAC/src/pe/lim/limSendManagementFrames.c
index 6c7853c..bf9f48a 100644
--- a/CORE/MAC/src/pe/lim/limSendManagementFrames.c
+++ b/CORE/MAC/src/pe/lim/limSendManagementFrames.c
@@ -4013,12 +4013,12 @@
     return eHAL_STATUS_SUCCESS;
 }
 
-eHalStatus limDisassocTxCompleteCnf(tpAniSirGlobal pMac, tANI_U32 txCompleteSuccess)
+eHalStatus limDisassocTxCompleteCnf(tpAniSirGlobal pMac, void *pData)
 {
     return limSendDisassocCnf(pMac);
 }
 
-eHalStatus limDeauthTxCompleteCnf(tpAniSirGlobal pMac, tANI_U32 txCompleteSuccess)
+eHalStatus limDeauthTxCompleteCnf(tpAniSirGlobal pMac, void *pData)
 {
     return limSendDeauthCnf(pMac);
 }