aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/video/fbdev/omap2/dss/hdmi5.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/video/fbdev/omap2/dss/hdmi5.c b/drivers/video/fbdev/omap2/dss/hdmi5.c
index 169b764bb9d4..c053d692ec16 100644
--- a/drivers/video/fbdev/omap2/dss/hdmi5.c
+++ b/drivers/video/fbdev/omap2/dss/hdmi5.c
@@ -290,6 +290,10 @@ static int hdmi_display_check_timing(struct omap_dss_device *dssdev,
290{ 290{
291 struct omap_dss_device *out = &hdmi.output; 291 struct omap_dss_device *out = &hdmi.output;
292 292
293 /* TODO: proper interlace support */
294 if (timings->interlace)
295 return -EINVAL;
296
293 if (!dispc_mgr_timings_ok(out->dispc_channel, timings)) 297 if (!dispc_mgr_timings_ok(out->dispc_channel, timings))
294 return -EINVAL; 298 return -EINVAL;
295 299