if (index != 0)
                return -EINVAL;
 
-       code->code = MEDIA_BUS_FMT_YUYV8_2X8;
+       code->code = MEDIA_BUS_FMT_UYVY8_2X8;
 
        return 0;
 }
                return 0;
        }
 
-       format->format.code = MEDIA_BUS_FMT_YUYV8_2X8;
+       format->format.code = MEDIA_BUS_FMT_UYVY8_2X8;
        format->format.width = tvp514x_std_list[decoder->current_std].width;
        format->format.height = tvp514x_std_list[decoder->current_std].height;
        format->format.colorspace = V4L2_COLORSPACE_SMPTE170M;
        struct tvp514x_decoder *decoder = to_decoder(sd);
 
        if (fmt->format.field != V4L2_FIELD_INTERLACED ||
-           fmt->format.code != MEDIA_BUS_FMT_YUYV8_2X8 ||
+           fmt->format.code != MEDIA_BUS_FMT_UYVY8_2X8 ||
            fmt->format.colorspace != V4L2_COLORSPACE_SMPTE170M ||
            fmt->format.width != tvp514x_std_list[decoder->current_std].width ||
            fmt->format.height != tvp514x_std_list[decoder->current_std].height)