* [PATCH] uvesafb: use pr_cont when printing multiple parameters on the same line
@ 2017-06-30 2:16 Mikulas Patocka
2017-06-30 3:47 ` Joe Perches
0 siblings, 1 reply; 2+ messages in thread
From: Mikulas Patocka @ 2017-06-30 2:16 UTC (permalink / raw)
To: Michal Januszewski, Bartlomiej Zolnierkiewicz; +Cc: linux-fbdev, linux-kernel
The kernel automatically inserts newlines between printk calls unless
pr_cont is used. This patch changes the uvesafb log message from:
[ 5.263290] uvesafb:
[ 5.263292] SeaBIOS Developers,
[ 5.263293] SeaBIOS VBE Adapter,
[ 5.263294] Rev. 1,
[ 5.263294] OEM: SeaBIOS VBE(C) 2011,
[ 5.263295] VBE v3.0
to
[ 4.711147] uvesafb: SeaBIOS Developers, SeaBIOS VBE Adapter, Rev. 1, OEM: SeaBIOS VBE(C) 2011, VBE v3.0
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
---
drivers/video/fbdev/uvesafb.c | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
Index: linux-2.6/drivers/video/fbdev/uvesafb.c
===================================================================
--- linux-2.6.orig/drivers/video/fbdev/uvesafb.c
+++ linux-2.6/drivers/video/fbdev/uvesafb.c
@@ -452,22 +452,22 @@ static int uvesafb_vbe_getinfo(struct uv
* video adapter and its vendor.
*/
if (par->vbe_ib.oem_vendor_name_ptr)
- printk("%s, ",
+ pr_cont("%s, ",
((char *)task->buf) + par->vbe_ib.oem_vendor_name_ptr);
if (par->vbe_ib.oem_product_name_ptr)
- printk("%s, ",
+ pr_cont("%s, ",
((char *)task->buf) + par->vbe_ib.oem_product_name_ptr);
if (par->vbe_ib.oem_product_rev_ptr)
- printk("%s, ",
+ pr_cont("%s, ",
((char *)task->buf) + par->vbe_ib.oem_product_rev_ptr);
if (par->vbe_ib.oem_string_ptr)
- printk("OEM: %s, ",
+ pr_cont("OEM: %s, ",
((char *)task->buf) + par->vbe_ib.oem_string_ptr);
- printk("VBE v%d.%d\n", ((par->vbe_ib.vbe_version & 0xff00) >> 8),
+ pr_cont("VBE v%d.%d\n", ((par->vbe_ib.vbe_version & 0xff00) >> 8),
par->vbe_ib.vbe_version & 0xff);
return 0;
@@ -580,8 +580,8 @@ static int uvesafb_vbe_getpmi(struct uve
printk(KERN_INFO "uvesafb: pmi: ports = ");
for (i = par->pmi_base[3]/2;
par->pmi_base[i] != 0xffff; i++)
- printk("%x ", par->pmi_base[i]);
- printk("\n");
+ pr_cont("%x ", par->pmi_base[i]);
+ pr_cont("\n");
if (par->pmi_base[i] != 0xffff) {
printk(KERN_INFO "uvesafb: can't handle memory"
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] uvesafb: use pr_cont when printing multiple parameters on the same line
2017-06-30 2:16 [PATCH] uvesafb: use pr_cont when printing multiple parameters on the same line Mikulas Patocka
@ 2017-06-30 3:47 ` Joe Perches
0 siblings, 0 replies; 2+ messages in thread
From: Joe Perches @ 2017-06-30 3:47 UTC (permalink / raw)
To: Mikulas Patocka, Michal Januszewski, Bartlomiej Zolnierkiewicz
Cc: linux-fbdev, linux-kernel
On Thu, 2017-06-29 at 22:16 -0400, Mikulas Patocka wrote:
> The kernel automatically inserts newlines between printk calls unless
> pr_cont is used. This patch changes the uvesafb log message from:
Should be fixed in -next already.
commit a8feae091106 ("uvesafb: Fix continuation printks without
KERN_LEVEL to pr_cont, neatening")
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-06-30 3:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-30 2:16 [PATCH] uvesafb: use pr_cont when printing multiple parameters on the same line Mikulas Patocka
2017-06-30 3:47 ` Joe Perches
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®