Bläddra i källkod

qcacmn: Update the debug level of pilot evm count

With the current implementation of tlv parsing for rx_evm and
rx_antenna, there is a flood in printing the higher pilot
evm count error. Update the debug level of the print to
prevent the RCU stall due to excessive printing.

CRs-Fixed: 3435849
Change-Id: I8f1eb0c133a4d8b70494639d90b04de23b276fc2
Sreeramya Soratkal 2 år sedan
förälder
incheckning
12b1dc3a21
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      dp/wifi3.0/monitor/dp_rx_mon.c

+ 1 - 1
dp/wifi3.0/monitor/dp_rx_mon.c

@@ -356,7 +356,7 @@ dp_rx_populate_su_evm_details(struct hal_rx_ppdu_info *ppdu_info,
 	pilot_count = ppdu_info->evm_info.pilot_count;
 
 	if ((nss_count * pilot_count) > DP_RX_MAX_SU_EVM_COUNT) {
-		qdf_err("pilot evm count is more than expected");
+		qdf_debug("pilot evm count is more than expected");
 		return;
 	}
 	cdp_rx_ppdu->evm_info.pilot_count = pilot_count;