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:
7b61ba8
)
[media] pluto2: use KERN_CONT where needed
author
Mauro Carvalho Chehab
<
[email protected]
>
Fri, 14 Oct 2016 10:14:37 +0000
(07:14 -0300)
committer
Mauro Carvalho Chehab
<
[email protected]
>
Fri, 18 Nov 2016 11:35:46 +0000
(09:35 -0200)
Some continuation messages are not using KERN_CONT.
Since commit
563873318d32
("Merge branch 'printk-cleanups"),
this won't work as expected anymore. So, let's add KERN_CONT
to those lines.
Signed-off-by: Mauro Carvalho Chehab <
[email protected]
>
drivers/media/pci/pluto2/pluto2.c
patch
|
blob
|
history
diff --git
a/drivers/media/pci/pluto2/pluto2.c
b/drivers/media/pci/pluto2/pluto2.c
index 655d6854a8d7fa165502c711bf6c83a017cc16be..65afb71ff79fef1bebb13e7ce29836047251d413 100644
(file)
--- a/
drivers/media/pci/pluto2/pluto2.c
+++ b/
drivers/media/pci/pluto2/pluto2.c
@@
-577,12
+577,12
@@
static int pluto_read_serial(struct pluto *pluto)
for (j = 0; j < 32; j += 8) {
if ((val & 0xff) == 0xff)
goto out;
- printk("%c", val & 0xff);
+ printk(
KERN_CONT
"%c", val & 0xff);
val >>= 8;
}
}
out:
- printk("\n");
+ printk(
KERN_CONT
"\n");
pci_iounmap(pdev, cis);
return 0;