projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6139521
)
dmaengine: pl330: fix instruction dump formatting
author
Łukasz Stelmach
<l.stelmach@samsung.com>
Thu, 13 Aug 2020 20:41:23 +0000
(22:41 +0200)
committer
Vinod Koul
<vkoul@kernel.org>
Tue, 25 Aug 2020 11:11:26 +0000
(16:41 +0530)
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>
drivers/dma/pl330.c
patch
|
blob
|
history
diff --git
a/drivers/dma/pl330.c
b/drivers/dma/pl330.c
index 2c508ee672b9084b7f6d333ea08732b8bc7da45d..591867e976a4807e5df29af578856765de937408 100644
(file)
--- 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)