[media] msp3400-driver: don't use KERN_CONT
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Thu, 20 Oct 2016 10:03:00 +0000 (08:03 -0200)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 18 Nov 2016 12:06:49 +0000 (10:06 -0200)
commitb68d75b955a62a6ade9e004b656415f346c3ad40
tree6d6348327b74153bce4f85ca0d1bead3ca063e15
parenta41231d52ff755597d67ce83bb36e16c47dfec91
[media] msp3400-driver: don't use KERN_CONT

Drivers using dev_foo() macro should not use KERN_CONT, as, internally,
those macros work as if all strings were terminated by a \n. So, doing:

dev_info(&client->dev, "%s ", client->name);
printk(KERN_CONT "supports radio, mode is autodetect and autoselect");

Would produce the following output:

msp3400 6-0044: msp3400
supports radio, mode is autodetect and autoselect

As there's no good reason to use KERN_CONT, let's rewrite the code
to avoid that, allowing this driver to be converted to dev_foo().

Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/i2c/msp3400-driver.c