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
This commit is contained in:
Ananya Gupta
2020-11-04 11:09:13 +05:30
committed by snandini
parent bc861d1193
commit 0973853fd4

View File

@@ -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;
}