Commit 7c66e121 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] pluto2: use KERN_CONT where needed

Some continuation messages are not using KERN_CONT.

Since commit 56387331 ("Merge branch 'printk-cleanups"),
this won't work as expected anymore. So, let's add KERN_CONT
to those lines.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 7b61ba8f
...@@ -577,12 +577,12 @@ static int pluto_read_serial(struct pluto *pluto) ...@@ -577,12 +577,12 @@ static int pluto_read_serial(struct pluto *pluto)
for (j = 0; j < 32; j += 8) { for (j = 0; j < 32; j += 8) {
if ((val & 0xff) == 0xff) if ((val & 0xff) == 0xff)
goto out; goto out;
printk("%c", val & 0xff); printk(KERN_CONT "%c", val & 0xff);
val >>= 8; val >>= 8;
} }
} }
out: out:
printk("\n"); printk(KERN_CONT "\n");
pci_iounmap(pdev, cis); pci_iounmap(pdev, cis);
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment