Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[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>

+2 -2
+2 -2
drivers/media/pci/pluto2/pluto2.c
··· 577 577 for (j = 0; j < 32; j += 8) { 578 578 if ((val & 0xff) == 0xff) 579 579 goto out; 580 - printk("%c", val & 0xff); 580 + printk(KERN_CONT "%c", val & 0xff); 581 581 val >>= 8; 582 582 } 583 583 } 584 584 out: 585 - printk("\n"); 585 + printk(KERN_CONT "\n"); 586 586 pci_iounmap(pdev, cis); 587 587 588 588 return 0;