Selaa lähdekoodia

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)
Mahesh A Saptasagar 8 vuotta sitten
vanhempi
sitoutus
fb33542c94
1 muutettua tiedostoa jossa 4 lisäystä ja 0 poistoa
  1. 4 0
      core/mac/src/pe/lim/lim_send_management_frames.c

+ 4 - 0
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);
 }