Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Stefan Wahren and committed by
Vinod Koul
1c4c8609 1e137d53

+2 -2
+2 -2
drivers/dma/fsl-edma-main.c
··· 164 164 fsl_chan = &fsl_edma->chans[i]; 165 165 166 166 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"); 168 168 return true; 169 169 } 170 170 } ··· 822 822 spin_lock_irqsave(&fsl_chan->vchan.lock, flags); 823 823 /* Make sure chan is idle or will force disable. */ 824 824 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"); 826 826 fsl_edma_disable_request(fsl_chan); 827 827 fsl_edma_chan_mux(fsl_chan, 0, false); 828 828 }