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 17:49:05 +0530 |
| commit | 08513a065488aef7a72e47cf7974071e8dff4c95 (patch) | |
| tree | 94dcbe521a300bcbc82b329c22b67b9e8605ef4c | |
| parent | 3ad9b0086685496c02ba8108f00da6284d0576d2 (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); } |
