diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-10-14 07:14:37 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2016-11-18 09:35:46 -0200 |
commit | 7c66e12136c2fa421ae75497e02728f252108a1b (patch) | |
tree | 7555cf26cef3d849c8df596a4b771d1ff4348956 /drivers/media/pci/pluto2 | |
parent | 7b61ba8ff838dbee422d428fbd882ab83db4b2d9 (diff) | |
download | linux-7c66e12136c2fa421ae75497e02728f252108a1b.tar.bz2 |
[media] pluto2: use KERN_CONT where needed
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 <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/pci/pluto2')
-rw-r--r-- | drivers/media/pci/pluto2/pluto2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/pci/pluto2/pluto2.c b/drivers/media/pci/pluto2/pluto2.c index 655d6854a8d7..65afb71ff79f 100644 --- 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; |