Pārlūkot izejas kodu

qca-wifi: Reduce log level for dumping lut

There seems to be a case where difference between DBR event count
and release count for CFR events is more than 1, which will dump
CFR's look-up-table. As the exact reason for this is not known yet,
we are reducing the log level for these prints to not be enabled
by default

Change-Id: I503f6423f08e6faa84b45747a28ec1a7de4724fc
Abhiram Jogadenu 5 gadi atpakaļ
vecāks
revīzija
1eab6b5e00
1 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 3 3
      cfr/src/target_if_cfr_8074v2.c

+ 3 - 3
cfr/src/target_if_cfr_8074v2.c

@@ -49,9 +49,9 @@ int dump_lut(struct wlan_objmgr_pdev *pdev)
 
 	for (i = 0; i < 136; i++) {
 		lut = &pdev_cfrobj->lut[i];
-		cfr_err("idx:%d dbrevnt: %d txevent: %d dbrppdu:0x%x txppdu:0x%x\n",
-			i, lut->dbr_recv, lut->tx_recv,
-			lut->dbr_ppdu_id, lut->tx_ppdu_id);
+		cfr_info("idx:%d dbrevnt: %d txevent: %d dbrppdu:0x%x txppdu:0x%x",
+			 i, lut->dbr_recv, lut->tx_recv,
+			 lut->dbr_ppdu_id, lut->tx_ppdu_id);
 	}
 
 	return 0;