qcacmn: Remove trailing comma/period from the DP logs

Remove trailing comma/period from the DP logs.

Change-Id: Ifdaf508157274c44f04e775c1883c4eaa2924c44
CRs-Fixed: 3492731
此提交包含在:
Srinivas Girigowda
2023-04-28 13:43:40 -07:00
提交者 Rahul Choudhary
父節點 363262cd30
當前提交 07bdb1114b
共有 8 個檔案被更改,包括 18 行新增18 行删除

查看文件

@@ -7048,7 +7048,7 @@ void dp_print_peer_stats(struct dp_peer *peer,
peer_stats->rx.rcvd_reo[i].bytes);
}
for (i = 0; i < CDP_MAX_LMACS; i++)
DP_PRINT_STATS("Packets Received on lmac[%d] = %d ( %llu ),",
DP_PRINT_STATS("Packets Received on lmac[%d] = %d ( %llu )",
i, peer_stats->rx.rx_lmac[i].num,
peer_stats->rx.rx_lmac[i].bytes);
@@ -7275,7 +7275,7 @@ void dp_txrx_path_stats(struct dp_soc *soc)
DP_PRINT_STATS("Invalid TX desc from completion ring: %u",
soc->stats.tx.invalid_tx_comp_desc);
DP_PRINT_STATS("Dropped in host:");
DP_PRINT_STATS("Total packets dropped: %u,",
DP_PRINT_STATS("Total packets dropped: %u",
pdev->stats.tx_i.dropped.dropped_pkt.num);
DP_PRINT_STATS("Descriptor not available: %u",
pdev->stats.tx_i.dropped.desc_na.num);
@@ -7329,25 +7329,25 @@ void dp_txrx_path_stats(struct dp_soc *soc)
DP_PRINT_STATS("Rx path statistics");
DP_PRINT_STATS("delivered %u msdus ( %llu bytes),",
DP_PRINT_STATS("delivered %u msdus ( %llu bytes)",
pdev->stats.rx.to_stack.num,
pdev->stats.rx.to_stack.bytes);
for (i = 0; i < CDP_MAX_RX_RINGS; i++) {
if (!pdev->stats.rx.rcvd_reo[i].num)
continue;
DP_PRINT_STATS(
"received on reo[%d] %u msdus( %llu bytes),",
"received on reo[%d] %u msdus( %llu bytes)",
i, pdev->stats.rx.rcvd_reo[i].num,
pdev->stats.rx.rcvd_reo[i].bytes);
}
for (i = 0; i < CDP_MAX_LMACS; i++)
DP_PRINT_STATS("received on lmac[%d] %u msdus (%llu bytes),",
DP_PRINT_STATS("received on lmac[%d] %u msdus (%llu bytes)",
i, pdev->stats.rx.rx_lmac[i].num,
pdev->stats.rx.rx_lmac[i].bytes);
DP_PRINT_STATS("intra-bss packets %u msdus ( %llu bytes),",
DP_PRINT_STATS("intra-bss packets %u msdus ( %llu bytes)",
pdev->stats.rx.intra_bss.pkts.num,
pdev->stats.rx.intra_bss.pkts.bytes);
DP_PRINT_STATS("intra-bss fails %u msdus ( %llu bytes),",
DP_PRINT_STATS("intra-bss fails %u msdus ( %llu bytes)",
pdev->stats.rx.intra_bss.fail.num,
pdev->stats.rx.intra_bss.fail.bytes);
DP_PRINT_STATS("intra-bss no mdns fwds %u msdus",
@@ -7355,7 +7355,7 @@ void dp_txrx_path_stats(struct dp_soc *soc)
DP_PRINT_STATS("intra-bss EAPOL drops: %u",
soc->stats.rx.err.intrabss_eapol_drop);
DP_PRINT_STATS("raw packets %u msdus ( %llu bytes),",
DP_PRINT_STATS("raw packets %u msdus ( %llu bytes)",
pdev->stats.rx.raw.num,
pdev->stats.rx.raw.bytes);
DP_PRINT_STATS("mic errors %u",