aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/s5p-tv/hdmi_drv.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/s5p-tv/hdmi_drv.c')
-rw-r--r--drivers/media/video/s5p-tv/hdmi_drv.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/media/video/s5p-tv/hdmi_drv.c b/drivers/media/video/s5p-tv/hdmi_drv.c
index e1b29b488f6..0279e6e89fe 100644
--- a/drivers/media/video/s5p-tv/hdmi_drv.c
+++ b/drivers/media/video/s5p-tv/hdmi_drv.c
@@ -440,6 +440,7 @@ static const struct hdmi_preset_conf hdmi_conf_480p = {
440 .height = 480, 440 .height = 480,
441 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */ 441 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */
442 .field = V4L2_FIELD_NONE, 442 .field = V4L2_FIELD_NONE,
443 .colorspace = V4L2_COLORSPACE_SRGB,
443 }, 444 },
444}; 445};
445 446
@@ -472,6 +473,7 @@ static const struct hdmi_preset_conf hdmi_conf_720p60 = {
472 .height = 720, 473 .height = 720,
473 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */ 474 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */
474 .field = V4L2_FIELD_NONE, 475 .field = V4L2_FIELD_NONE,
476 .colorspace = V4L2_COLORSPACE_SRGB,
475 }, 477 },
476}; 478};
477 479
@@ -504,6 +506,7 @@ static const struct hdmi_preset_conf hdmi_conf_1080p50 = {
504 .height = 1080, 506 .height = 1080,
505 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */ 507 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */
506 .field = V4L2_FIELD_NONE, 508 .field = V4L2_FIELD_NONE,
509 .colorspace = V4L2_COLORSPACE_SRGB,
507 }, 510 },
508}; 511};
509 512
@@ -536,6 +539,7 @@ static const struct hdmi_preset_conf hdmi_conf_1080p60 = {
536 .height = 1080, 539 .height = 1080,
537 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */ 540 .code = V4L2_MBUS_FMT_FIXED, /* means RGB888 */
538 .field = V4L2_FIELD_NONE, 541 .field = V4L2_FIELD_NONE,
542 .colorspace = V4L2_COLORSPACE_SRGB,
539 }, 543 },
540}; 544};
541 545