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

[media] v4l2-dv-timings: log new V4L2_DV_FL_IS_CE_VIDEO flag

Add support for the new flag to v4l2_print_dv_timings().

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

authored by

Hans Verkuil and committed by
Mauro Carvalho Chehab
74d802d8 5ce65d1f

+4 -2
+4 -2
drivers/media/v4l2-core/v4l2-dv-timings.c
··· 282 282 (bt->polarities & V4L2_DV_VSYNC_POS_POL) ? "+" : "-", 283 283 bt->vsync, bt->vbackporch); 284 284 pr_info("%s: pixelclock: %llu\n", dev_prefix, bt->pixelclock); 285 - pr_info("%s: flags (0x%x):%s%s%s%s\n", dev_prefix, bt->flags, 285 + pr_info("%s: flags (0x%x):%s%s%s%s%s\n", dev_prefix, bt->flags, 286 286 (bt->flags & V4L2_DV_FL_REDUCED_BLANKING) ? 287 287 " REDUCED_BLANKING" : "", 288 288 (bt->flags & V4L2_DV_FL_CAN_REDUCE_FPS) ? ··· 290 290 (bt->flags & V4L2_DV_FL_REDUCED_FPS) ? 291 291 " REDUCED_FPS" : "", 292 292 (bt->flags & V4L2_DV_FL_HALF_LINE) ? 293 - " HALF_LINE" : ""); 293 + " HALF_LINE" : "", 294 + (bt->flags & V4L2_DV_FL_IS_CE_VIDEO) ? 295 + " CE_VIDEO" : ""); 294 296 pr_info("%s: standards (0x%x):%s%s%s%s\n", dev_prefix, bt->standards, 295 297 (bt->standards & V4L2_DV_BT_STD_CEA861) ? " CEA" : "", 296 298 (bt->standards & V4L2_DV_BT_STD_DMT) ? " DMT" : "",