Forráskód Böngészése

qcacld-3.0: Remove logging of CDS context in HDD

In hdd_softap_sta_deauth() and hdd_softap_sta_disassoc() there
currently exist debug logs which are logging the CDS context
pointer. These logs serve no useful purpose, so remove them.

Change-Id: I3844cb1346dcc6050ad16f28caf7b07b1e79cfe4
CRs-Fixed: 2116979
Jeff Johnson 7 éve
szülő
commit
bc0ae77d63
1 módosított fájl, 0 hozzáadás és 6 törlés
  1. 0 6
      core/hdd/src/wlan_hdd_main.c

+ 0 - 6
core/hdd/src/wlan_hdd_main.c

@@ -10147,9 +10147,6 @@ QDF_STATUS hdd_softap_sta_deauth(struct hdd_adapter *adapter,
 
 	ENTER();
 
-	hdd_debug("hdd_softap_sta_deauth:(%pK, false)",
-	       (WLAN_HDD_GET_CTX(adapter))->pcds_context);
-
 	/* Ignore request to deauth bcmc station */
 	if (pDelStaParams->peerMacAddr.bytes[0] & 0x1)
 		return qdf_status;
@@ -10176,9 +10173,6 @@ void hdd_softap_sta_disassoc(struct hdd_adapter *adapter,
 {
 	ENTER();
 
-	hdd_debug("hdd_softap_sta_disassoc:(%pK, false)",
-	       (WLAN_HDD_GET_CTX(adapter))->pcds_context);
-
 	/* Ignore request to disassoc bcmc station */
 	if (pDelStaParams->peerMacAddr.bytes[0] & 0x1)
 		return;