{
        struct ad9389b_state *state = get_ad9389b_state(sd);
 
-       if (state->dv_timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
-               /* CEA format, not IT  */
+       if (state->dv_timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO) {
+               /* CE format, not IT  */
                ad9389b_wr_and_or(sd, 0xcd, 0xbf, 0x00);
        } else {
                /* IT format */
        switch (ctrl->val) {
        case V4L2_DV_RGB_RANGE_AUTO:
                /* automatic */
-               if (state->dv_timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
-                       /* cea format, RGB limited range (16-235) */
+               if (state->dv_timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO) {
+                       /* CE format, RGB limited range (16-235) */
                        ad9389b_csc_rgb_full2limit(sd, true);
                } else {
-                       /* not cea format, RGB full range (0-255) */
+                       /* not CE format, RGB full range (0-255) */
                        ad9389b_csc_rgb_full2limit(sd, false);
                }
                break;
 
 static void adv7511_set_IT_content_AVI_InfoFrame(struct v4l2_subdev *sd)
 {
        struct adv7511_state *state = get_adv7511_state(sd);
-       if (state->dv_timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
-               /* CEA format, not IT  */
+       if (state->dv_timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO) {
+               /* CE format, not IT  */
                adv7511_wr_and_or(sd, 0x57, 0x7f, 0x00);
        } else {
                /* IT format */
                /* automatic */
                struct adv7511_state *state = get_adv7511_state(sd);
 
-               if (state->dv_timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
-                       /* cea format, RGB limited range (16-235) */
+               if (state->dv_timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO) {
+                       /* CE format, RGB limited range (16-235) */
                        adv7511_csc_rgb_full2limit(sd, true);
                } else {
-                       /* not cea format, RGB full range (0-255) */
+                       /* not CE format, RGB full range (0-255) */
                        adv7511_csc_rgb_full2limit(sd, false);
                }
        }
 
                /* Receiving DVI-D signal
                 * ADV7604 selects RGB limited range regardless of
                 * input format (CE/IT) in automatic mode */
-               if (state->timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
+               if (state->timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO) {
                        /* RGB limited range (16-235) */
                        io_write_clr_set(sd, 0x02, 0xf0, 0x00);
                } else {
        format->width = state->timings.bt.width;
        format->height = state->timings.bt.height;
        format->field = V4L2_FIELD_NONE;
+       format->colorspace = V4L2_COLORSPACE_SRGB;
 
-       if (state->timings.bt.standards & V4L2_DV_BT_STD_CEA861)
+       if (state->timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO)
                format->colorspace = (state->timings.bt.height <= 576) ?
                        V4L2_COLORSPACE_SMPTE170M : V4L2_COLORSPACE_REC709;
 }
 
                /* Receiving DVI-D signal
                 * ADV7842 selects RGB limited range regardless of
                 * input format (CE/IT) in automatic mode */
-               if (state->timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
+               if (state->timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO) {
                        /* RGB limited range (16-235) */
                        io_write_and_or(sd, 0x02, 0x0f, 0x00);
                } else {
                return 0;
        }
 
-       if (state->timings.bt.standards & V4L2_DV_BT_STD_CEA861) {
+       fmt->colorspace = V4L2_COLORSPACE_SRGB;
+       if (state->timings.bt.flags & V4L2_DV_FL_IS_CE_VIDEO) {
                fmt->colorspace = (state->timings.bt.height <= 576) ?
                        V4L2_COLORSPACE_SMPTE170M : V4L2_COLORSPACE_REC709;
        }