[PATCH][next] dmaengine: ppc4xx: Remove space before newline

Colin Ian King posted 1 patch 2 months ago
drivers/dma/ppc4xx/adma.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH][next] dmaengine: ppc4xx: Remove space before newline
Posted by Colin Ian King 2 months ago
There is a extraneous space before a newline in pr_err and dev_dbg
messages. Remove the spaces.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/dma/ppc4xx/adma.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/dma/ppc4xx/adma.c b/drivers/dma/ppc4xx/adma.c
index 9d2a5a967a99..61500ad7c850 100644
--- a/drivers/dma/ppc4xx/adma.c
+++ b/drivers/dma/ppc4xx/adma.c
@@ -874,7 +874,7 @@ static int ppc440spe_dma2_pq_slot_count(dma_addr_t *srcs,
 		pr_err("%s: src_cnt=%d, state=%d, addr_count=%d, order=%lld\n",
 			__func__, src_cnt, state, addr_count, order);
 		for (i = 0; i < src_cnt; i++)
-			pr_err("\t[%d] 0x%llx \n", i, srcs[i]);
+			pr_err("\t[%d] 0x%llx\n", i, srcs[i]);
 		BUG();
 	}
 
@@ -3636,7 +3636,7 @@ static void ppc440spe_adma_issue_pending(struct dma_chan *chan)
 
 	ppc440spe_chan = to_ppc440spe_adma_chan(chan);
 	dev_dbg(ppc440spe_chan->device->common.dev,
-		"ppc440spe adma%d: %s %d \n", ppc440spe_chan->device->id,
+		"ppc440spe adma%d: %s %d\n", ppc440spe_chan->device->id,
 		__func__, ppc440spe_chan->pending);
 
 	if (ppc440spe_chan->pending) {
-- 
2.50.0
Re: [PATCH][next] dmaengine: ppc4xx: Remove space before newline
Posted by Vinod Koul 1 month, 2 weeks ago
On Wed, 30 Jul 2025 17:27:12 +0100, Colin Ian King wrote:
> There is a extraneous space before a newline in pr_err and dev_dbg
> messages. Remove the spaces.
> 
> 

Applied, thanks!

[1/1] dmaengine: ppc4xx: Remove space before newline
      commit: 1daede86fef9e9890c5781541ad4934c776858c5

Best regards,
-- 
~Vinod