[media] tvaudio: mark printk continuation lines as such
authorMauro Carvalho Chehab <mchehab@s-opensource.com>
Thu, 13 Oct 2016 17:02:21 +0000 (14:02 -0300)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Fri, 21 Oct 2016 10:51:29 +0000 (08:51 -0200)
This driver has printk continuation lines for
debugging purposes. 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>
drivers/media/i2c/tvaudio.c

index 42d1e26..ce86534 100644 (file)
@@ -1894,8 +1894,9 @@ static int tvaudio_probe(struct i2c_client *client, const struct i2c_device_id *
                printk(KERN_INFO "tvaudio: TV audio decoder + audio/video mux driver\n");
                printk(KERN_INFO "tvaudio: known chips: ");
                for (desc = chiplist; desc->name != NULL; desc++)
-                       printk("%s%s", (desc == chiplist) ? "" : ", ", desc->name);
-               printk("\n");
+                       printk(KERN_CONT "%s%s",
+                              (desc == chiplist) ? "" : ", ", desc->name);
+               printk(KERN_CONT "\n");
        }
 
        chip = devm_kzalloc(&client->dev, sizeof(*chip), GFP_KERNEL);