wlan : Remove the HDD callback for the management frame logging.

If connection fails, MC thread process the connection failure
event in SME and inform HDD. From HDD the management logging is
called, which post a event to SME, and wait for 2 Sec for the
callback. But unless driver return from HDD and free up the SME
active list this frame logging event wont be executed, thus
MC thread stuck for 2 sec.

To fix the 2 sec MC thread stuck issue, remove the wait for the
callback as this is just the indication to firmware and no response
is required in HDD.

CRs-Fixed: 868653
Change-Id: Ia2f1e1828d82f4bc0fcb5b0cd883dff8f800d956
diff --git a/CORE/SME/inc/sme_Api.h b/CORE/SME/inc/sme_Api.h
index c3299be..86f7f1e 100644
--- a/CORE/SME/inc/sme_Api.h
+++ b/CORE/SME/inc/sme_Api.h
@@ -2179,14 +2179,10 @@
     \fn sme_GetFramesLog
     \brief a wrapper function that client calls to register a callback to get
            mgmt frames logged
-    \param callback - SME sends back the context using the callback
     \param flag - flag tells to clear OR send the frame log buffer
-    \param pContext - user context to be passed back along with the callback
     \return eHalStatus
   ---------------------------------------------------------------------------*/
-eHalStatus sme_GetFramesLog(tHalHandle hHal,
-                             tGetFrameLogCallback callback,
-                             tANI_U8 flag, void *pContext);
+eHalStatus sme_GetFramesLog(tHalHandle hHal, tANI_U8 flag);
 /* ---------------------------------------------------------------------------
 
   \fn    sme_InitMgmtFrameLogging