Browse Source

qcacld-3.0: Suppress frequent log from dmesg

Currently in wlan_hdd_tdls_ct_process_peers()
"link_status 0 tdls_support 0" is coming frequently
in dmesg due to low log level which leads to crash.
Fix is to change the log level to debug.

Change-Id: I9e110e2c7f45b2372990d5a1d3879ed9a1aab8c2
CRs-Fixed: 1093093
Nishank Aggarwal 8 years ago
parent
commit
9348dcb989
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/hdd/src/wlan_hdd_tdls.c

+ 1 - 1
core/hdd/src/wlan_hdd_tdls.c

@@ -6116,7 +6116,7 @@ static void wlan_hdd_tdls_ct_process_peers(hddTdlsPeer_t *curr_peer,
 					   hdd_context_t *hdd_ctx,
 					   tdlsCtx_t *hdd_tdls_ctx)
 {
-	hdd_info(MAC_ADDRESS_STR " link_status %d tdls_support %d",
+	hdd_debug(MAC_ADDRESS_STR " link_status %d tdls_support %d",
 		 MAC_ADDR_ARRAY(curr_peer->peerMac),
 		 curr_peer->link_status, curr_peer->tdls_support);