summaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2
diff options
context:
space:
mode:
authorTomi Valkeinen2014-04-03 14:48:32 +0200
committerTomi Valkeinen2014-04-04 08:56:19 +0200
commit0f5d9d2e7d234acb26bc98dd820cc8dd178774d6 (patch)
tree80d43099f72465e05c020f3a7f92865093680d12 /drivers/video/omap2
parentOMAPDSS: add missing __init for dss_init_ports (diff)
downloadkernel-qcow2-linux-0f5d9d2e7d234acb26bc98dd820cc8dd178774d6.tar.gz
kernel-qcow2-linux-0f5d9d2e7d234acb26bc98dd820cc8dd178774d6.tar.xz
kernel-qcow2-linux-0f5d9d2e7d234acb26bc98dd820cc8dd178774d6.zip
OMAPDSS: HDMI: fix interlace output
The HDMI output video format's yres needs to be divided by two for interlace. Fix it. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2')
-rw-r--r--drivers/video/omap2/dss/hdmi_wp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/omap2/dss/hdmi_wp.c b/drivers/video/omap2/dss/hdmi_wp.c
index cd620c6e43a0..f5f4ccf50d90 100644
--- a/drivers/video/omap2/dss/hdmi_wp.c
+++ b/drivers/video/omap2/dss/hdmi_wp.c
@@ -171,6 +171,8 @@ void hdmi_wp_init_vid_fmt_timings(struct hdmi_video_format *video_fmt,
video_fmt->packing_mode = HDMI_PACK_10b_RGB_YUV444;
video_fmt->y_res = param->timings.y_res;
video_fmt->x_res = param->timings.x_res;
+ if (param->timings.interlace)
+ video_fmt->y_res /= 2;
timings->hbp = param->timings.hbp;
timings->hfp = param->timings.hfp;