aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/pl330.c
diff options
context:
space:
mode:
authorŁukasz Stelmach <l.stelmach@samsung.com>2020-08-13 22:41:23 +0200
committerVinod Koul <vkoul@kernel.org>2020-08-25 16:41:26 +0530
commit112ec61b212200d378963cbafdd736a62e9ddaec (patch)
tree0b7b7af94135eeb28cf2ad7747552eeaa348b3e7 /drivers/dma/pl330.c
parentdmaengine: dw-edma: Fix typo in comments offset (diff)
downloadlinux-dev-112ec61b212200d378963cbafdd736a62e9ddaec.tar.xz
linux-dev-112ec61b212200d378963cbafdd736a62e9ddaec.zip
dmaengine: pl330: fix instruction dump formatting
Instruction dump uses two printk() in a row to print one instruction. Use KERN_CONT to prevent breaking the output in the middle. Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com> Link: https://lore.kernel.org/r/20200813204123.19044-1-l.stelmach@samsung.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma/pl330.c')
-rw-r--r--drivers/dma/pl330.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c
index 2c508ee672b9..591867e976a4 100644
--- a/drivers/dma/pl330.c
+++ b/drivers/dma/pl330.c
@@ -255,7 +255,7 @@ enum pl330_byteswap {
static unsigned cmd_line;
#define PL330_DBGCMD_DUMP(off, x...) do { \
printk("%x:", cmd_line); \
- printk(x); \
+ printk(KERN_CONT x); \
cmd_line += off; \
} while (0)
#define PL330_DBGMC_START(addr) (cmd_line = addr)