projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4bac3cc
)
ARM: s3c24xx: Restore proper usage of pr_info/pr_cont
author
Cedric Roux
<sed@free.fr>
Mon, 17 Sep 2018 20:43:50 +0000
(22:43 +0200)
committer
Krzysztof Kozlowski
<krzk@kernel.org>
Wed, 19 Sep 2018 17:11:17 +0000
(19:11 +0200)
Fix wrong usage of pr_info introduced by the commit
e728e4f20100
("ARM:
s3c24xx: formatting cleanup in mach-mini2440.c").
Since the idea is to print on a single line, pr_cont has to be used.
Signed-off-by: Cedric Roux <sed@free.fr>
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
arch/arm/mach-s3c24xx/mach-mini2440.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-s3c24xx/mach-mini2440.c
b/arch/arm/mach-s3c24xx/mach-mini2440.c
index 9f830abe701c1b303dd6290a1d326c17e5ab2ff1..50d67d760efdeef7f3878e00f63195df67336fbf 100644
(file)
--- a/
arch/arm/mach-s3c24xx/mach-mini2440.c
+++ b/
arch/arm/mach-s3c24xx/mach-mini2440.c
@@
-684,14
+684,14
@@
static void __init mini2440_init(void)
pr_info("MINI2440: LCD");
for (li = 0; li < ARRAY_SIZE(mini2440_lcd_cfg); li++)
if (li == features.lcd_index)
- pr_
info
(" [%d:%dx%d]", li,
+ pr_
cont
(" [%d:%dx%d]", li,
mini2440_lcd_cfg[li].width,
mini2440_lcd_cfg[li].height);
else
- pr_
info
(" %d:%dx%d", li,
+ pr_
cont
(" %d:%dx%d", li,
mini2440_lcd_cfg[li].width,
mini2440_lcd_cfg[li].height);
- pr_
info
("\n");
+ pr_
cont
("\n");
s3c24xx_fb_set_platdata(&mini2440_fb_info);
}