diff options
author | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-01-13 19:41:40 +0300 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-03-03 18:36:43 +0300 |
commit | d31966ffd123e4bc3426af26855f77c2d3a70d2b (patch) | |
tree | 15ac35920329168b1c48f17be27746c34b2b5d8a /drivers | |
parent | 14ac59349c04caedb53a75c85d19cf7d68992748 (diff) | |
download | linux-d31966ffd123e4bc3426af26855f77c2d3a70d2b.tar.xz |
drm/omap: HDMI5: allow interlace
Now that interlace support has been added, we can remove the check that
prevents interlace.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/omapdrm/dss/hdmi5.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi5.c b/drivers/gpu/drm/omapdrm/dss/hdmi5.c index 34174ea85a54..b2dd4c9f20d5 100644 --- a/drivers/gpu/drm/omapdrm/dss/hdmi5.c +++ b/drivers/gpu/drm/omapdrm/dss/hdmi5.c @@ -284,10 +284,6 @@ static int hdmi_display_check_timing(struct omap_dss_device *dssdev, { struct omap_dss_device *out = &hdmi.output; - /* TODO: proper interlace support */ - if (timings->interlace) - return -EINVAL; - if (!dispc_mgr_timings_ok(out->dispc_channel, timings)) return -EINVAL; |