Skip to content

Commit 951d508

Browse files
committed
dmaengine: fsl-edma: Add missing newlines to log messages
JIRA: https://issues.redhat.com/browse/RHEL-115725 commit 1c4c860 Author: Stefan Wahren <wahrenst@gmx.net> Date: Wed Feb 5 10:14:55 2025 +0100 dmaengine: fsl-edma: Add missing newlines to log messages Not all log messages have a newline at the end. So fix it. Signed-off-by: Stefan Wahren <wahrenst@gmx.net> Reviewed-by: Frank Li <Frank.Li@nxp.com> Link: https://lore.kernel.org/r/20250205091455.4593-1-wahrenst@gmx.net Signed-off-by: Vinod Koul <vkoul@kernel.org> Signed-off-by: Jared Kangas <jkangas@redhat.com>
1 parent bc3415a commit 951d508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

drivers/dma/fsl-edma-main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ static bool fsl_edma_srcid_in_use(struct fsl_edma_engine *fsl_edma, u32 srcid)
164164
fsl_chan = &fsl_edma->chans[i];
165165

166166
if (fsl_chan->srcid && srcid == fsl_chan->srcid) {
167-
dev_err(&fsl_chan->pdev->dev, "The srcid is in use, can't use!");
167+
dev_err(&fsl_chan->pdev->dev, "The srcid is in use, can't use!\n");
168168
return true;
169169
}
170170
}
@@ -822,7 +822,7 @@ static int fsl_edma_suspend_late(struct device *dev)
822822
spin_lock_irqsave(&fsl_chan->vchan.lock, flags);
823823
/* Make sure chan is idle or will force disable. */
824824
if (unlikely(fsl_chan->status == DMA_IN_PROGRESS)) {
825-
dev_warn(dev, "WARN: There is non-idle channel.");
825+
dev_warn(dev, "WARN: There is non-idle channel.\n");
826826
fsl_edma_disable_request(fsl_chan);
827827
fsl_edma_chan_mux(fsl_chan, 0, false);
828828
}

0 commit comments

Comments
 (0)