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

[media] cx2341x: mark printk continuation lines as such

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>

+6 -6
+6 -6
drivers/media/common/cx2341x.c
··· 1190 1190 prefix, 1191 1191 cx2341x_menu_item(p, V4L2_CID_MPEG_STREAM_TYPE)); 1192 1192 if (p->stream_insert_nav_packets) 1193 - printk(" (with navigation packets)"); 1194 - printk("\n"); 1193 + printk(KERN_CONT " (with navigation packets)"); 1194 + printk(KERN_CONT "\n"); 1195 1195 printk(KERN_INFO "%s: VBI Format: %s\n", 1196 1196 prefix, 1197 1197 cx2341x_menu_item(p, V4L2_CID_MPEG_STREAM_VBI_FMT)); ··· 1209 1209 cx2341x_menu_item(p, V4L2_CID_MPEG_VIDEO_BITRATE_MODE), 1210 1210 p->video_bitrate); 1211 1211 if (p->video_bitrate_mode == V4L2_MPEG_VIDEO_BITRATE_MODE_VBR) 1212 - printk(", Peak %d", p->video_bitrate_peak); 1213 - printk("\n"); 1212 + printk(KERN_CONT ", Peak %d", p->video_bitrate_peak); 1213 + printk(KERN_CONT "\n"); 1214 1214 printk(KERN_INFO 1215 1215 "%s: Video: GOP Size %d, %d B-Frames, %sGOP Closure\n", 1216 1216 prefix, ··· 1232 1232 cx2341x_menu_item(p, V4L2_CID_MPEG_AUDIO_MODE), 1233 1233 p->audio_mute ? " (muted)" : ""); 1234 1234 if (p->audio_mode == V4L2_MPEG_AUDIO_MODE_JOINT_STEREO) 1235 - printk(", %s", cx2341x_menu_item(p, 1235 + printk(KERN_CONT ", %s", cx2341x_menu_item(p, 1236 1236 V4L2_CID_MPEG_AUDIO_MODE_EXTENSION)); 1237 - printk(", %s, %s\n", 1237 + printk(KERN_CONT ", %s, %s\n", 1238 1238 cx2341x_menu_item(p, V4L2_CID_MPEG_AUDIO_EMPHASIS), 1239 1239 cx2341x_menu_item(p, V4L2_CID_MPEG_AUDIO_CRC)); 1240 1240