qcacmn: Remove trailing newline from the DP Logs

Remove trailing newline from the DP Logs.

Change-Id: Iaf54e57fb44cf7c15d82bd5c0ffb3fc7c3d04a2b
CRs-Fixed: 3492501
This commit is contained in:
Srinivas Girigowda
2023-04-12 16:33:00 -07:00
committed by Rahul Choudhary
parent 998426711a
commit 48cf24b446
32 changed files with 103 additions and 104 deletions

View File

@@ -1910,7 +1910,7 @@ qdf_nbuf_t dp_rx_sg_create(struct dp_soc *soc, qdf_nbuf_t nbuf)
nbuf->next = NULL;
break;
} else if (qdf_nbuf_is_rx_chfrag_end(nbuf)) {
dp_err("Invalid packet length\n");
dp_err("Invalid packet length");
qdf_assert_always(0);
}
nbuf = nbuf->next;
@@ -2885,7 +2885,7 @@ QDF_STATUS dp_rx_vdev_detach(struct dp_vdev *vdev)
if (vdev->osif_rx_flush) {
ret = vdev->osif_rx_flush(vdev->osif_vdev, vdev->vdev_id);
if (!QDF_IS_STATUS_SUCCESS(ret)) {
dp_err("Failed to flush rx pkts for vdev %d\n",
dp_err("Failed to flush rx pkts for vdev %d",
vdev->vdev_id);
return ret;
}