Skip to content

Commit 1daede8

Browse files
ColinIanKingvinodkoul
authored andcommitted
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 <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
1 parent c937969 commit 1daede8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/dma/ppc4xx/adma.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ static int ppc440spe_dma2_pq_slot_count(dma_addr_t *srcs,
874874
pr_err("%s: src_cnt=%d, state=%d, addr_count=%d, order=%lld\n",
875875
__func__, src_cnt, state, addr_count, order);
876876
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]);
878878
BUG();
879879
}
880880

@@ -3636,7 +3636,7 @@ static void ppc440spe_adma_issue_pending(struct dma_chan *chan)
36363636

36373637
ppc440spe_chan = to_ppc440spe_adma_chan(chan);
36383638
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,
36403640
__func__, ppc440spe_chan->pending);
36413641

36423642
if (ppc440spe_chan->pending) {

0 commit comments

Comments
 (0)