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: ppc4xx: Remove space before newline

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>
Link: https://lore.kernel.org/r/20250730162712.2086439-1-colin.i.king@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>

authored by

Colin Ian King and committed by
Vinod Koul
1daede86 c937969a

+2 -2
+2 -2
drivers/dma/ppc4xx/adma.c
··· 874 874 pr_err("%s: src_cnt=%d, state=%d, addr_count=%d, order=%lld\n", 875 875 __func__, src_cnt, state, addr_count, order); 876 876 for (i = 0; i < src_cnt; i++) 877 - pr_err("\t[%d] 0x%llx \n", i, srcs[i]); 877 + pr_err("\t[%d] 0x%llx\n", i, srcs[i]); 878 878 BUG(); 879 879 } 880 880 ··· 3636 3636 3637 3637 ppc440spe_chan = to_ppc440spe_adma_chan(chan); 3638 3638 dev_dbg(ppc440spe_chan->device->common.dev, 3639 - "ppc440spe adma%d: %s %d \n", ppc440spe_chan->device->id, 3639 + "ppc440spe adma%d: %s %d\n", ppc440spe_chan->device->id, 3640 3640 __func__, ppc440spe_chan->pending); 3641 3641 3642 3642 if (ppc440spe_chan->pending) {