diff options
| author | Mahesh A Saptasagar <c_msapta@qti.qualcomm.com> | 2016-05-16 17:03:43 +0530 |
|---|---|---|
| committer | Anjaneedevi Kapparapu <akappa@codeaurora.org> | 2016-05-18 14:36:29 +0530 |
| commit | 65cf8fa5215a46352367e426d0b4aaef2cd0bfbb (patch) | |
| tree | 94dcbe521a300bcbc82b329c22b67b9e8605ef4c | |
| parent | 953d933f07587b9adba3e2accec66b9533fb93fd (diff) | |
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
| -rw-r--r-- | CORE/MAC/src/pe/lim/limSendManagementFrames.c | 2 |
1 files changed, 2 insertions, 0 deletions
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); } |
