diff options
| author | Mahesh A Saptasagar <msapta@codeaurora.org> | 2016-07-21 18:32:51 +0530 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-09-10 19:06:46 -0700 |
| commit | fb33542c9487dafce52014b828dbdc813bf9ba89 (patch) | |
| tree | b52267b54755ab016948420057c5609f2f473c86 | |
| parent | ebb47fa2937e5783ae74dda74fabd81cf2d1f641 (diff) | |
qcacld-3.0: Log info about deauth/disassoc sent over air
qcacld-2.0 to qcacld-3.0 propagation.
Log success or failure status whether disassoc/deauth sent successfully
over the air.
Change-Id: I527bd35546eb21157498f235fe74710dd3f7688e
CRs-Fixed: 1016866
(cherry picked from commit d081fef10c8440830cea8d6e598087d5021687ae)
| -rw-r--r-- | core/mac/src/pe/lim/lim_send_management_frames.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/mac/src/pe/lim/lim_send_management_frames.c b/core/mac/src/pe/lim/lim_send_management_frames.c index 6bbddbd5df60..43899d80751d 100644 --- a/core/mac/src/pe/lim/lim_send_management_frames.c +++ b/core/mac/src/pe/lim/lim_send_management_frames.c @@ -2520,12 +2520,16 @@ end: QDF_STATUS lim_disassoc_tx_complete_cnf(tpAniSirGlobal pMac, uint32_t txCompleteSuccess) { + lim_log(pMac, LOG1, + FL("txCompleteSuccess: %d"), txCompleteSuccess); return lim_send_disassoc_cnf(pMac); } QDF_STATUS lim_deauth_tx_complete_cnf(tpAniSirGlobal pMac, uint32_t txCompleteSuccess) { + lim_log(pMac, LOG1, + FL("txCompleteSuccess: %d"), txCompleteSuccess); return lim_send_deauth_cnf(pMac); } |
