From 0973853fd43aaa19eb64c7851ac0f52cc3af28a5 Mon Sep 17 00:00:00 2001 From: Ananya Gupta Date: Wed, 4 Nov 2020 11:09:13 +0530 Subject: [PATCH] qcacmn: Change log level of null check for peer Update log level of peer null check from err to info in dp_tx_comp_process_tx_status as excessive logging is detected. CRs-Fixed: 2811236 Change-Id: I1b0ae723adb90b4b915f11479b5408fde147864c --- dp/wifi3.0/dp_tx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dp/wifi3.0/dp_tx.c b/dp/wifi3.0/dp_tx.c index a4a93e6af2..852e0e4870 100644 --- a/dp/wifi3.0/dp_tx.c +++ b/dp/wifi3.0/dp_tx.c @@ -4166,7 +4166,7 @@ void dp_tx_comp_process_tx_status(struct dp_soc *soc, (ts->status == HAL_TX_TQM_RR_REM_CMD_REM)); if (!peer) { - dp_err_rl("peer is null or deletion in progress"); + dp_info_rl("peer is null or deletion in progress"); DP_STATS_INC_PKT(soc, tx.tx_invalid_peer, 1, length); goto out; }