Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 178991e0 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] tvaudio: mark printk continuation lines as such



This driver has printk continuation lines for
debugging purposes. Since commit 56387331
("Merge branch 'printk-cleanups'"), this won't work as expected
anymore. So, let's add KERN_CONT to those lines.

Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent c5bac2e7
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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);