From 65cf8fa5215a46352367e426d0b4aaef2cd0bfbb Mon Sep 17 00:00:00 2001 From: Mahesh A Saptasagar Date: Mon, 16 May 2016 17:03:43 +0530 Subject: qcacld-2.0: Log info about deauth/disassoc sent over air Log success or failure status whether disassoc/deauth sent successfully over the air. Change-Id: I527bd35546eb21157498f235fe74710dd3f7688e CRs-Fixed: 1016866 --- CORE/MAC/src/pe/lim/limSendManagementFrames.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CORE/MAC/src/pe/lim/limSendManagementFrames.c b/CORE/MAC/src/pe/lim/limSendManagementFrames.c index 74ddb451b621..9e2daa9c2594 100644 --- a/CORE/MAC/src/pe/lim/limSendManagementFrames.c +++ b/CORE/MAC/src/pe/lim/limSendManagementFrames.c @@ -3909,11 +3909,13 @@ end: eHalStatus limDisassocTxCompleteCnf(tpAniSirGlobal pMac, tANI_U32 txCompleteSuccess) { + limLog(pMac, LOG1, FL("txCompleteSuccess: %d"), txCompleteSuccess); return limSendDisassocCnf(pMac); } eHalStatus limDeauthTxCompleteCnf(tpAniSirGlobal pMac, tANI_U32 txCompleteSuccess) { + limLog(pMac, LOG1, FL("txCompleteSuccess: %d"), txCompleteSuccess); return limSendDeauthCnf(pMac); } -- cgit v1.2.3