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 <mche...@s-opensource.com>
---
 drivers/media/i2c/tvaudio.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/media/i2c/tvaudio.c b/drivers/media/i2c/tvaudio.c
index 42d1e26e581c..ce86534450ac 100644
--- a/drivers/media/i2c/tvaudio.c
+++ b/drivers/media/i2c/tvaudio.c
@@ -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);
-- 
2.7.4


--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to