aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/omapdrm/omap_connector.c
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2016-09-22 07:07:00 -0400
committerTomi Valkeinen <tomi.valkeinen@ti.com>2016-11-02 04:48:18 -0400
commitf149e17a7bf904c55f69e2aef5a0fc5915e40e04 (patch)
tree8c46e9f5ac20ad3a167d989cf674f1073e1f8301 /drivers/gpu/drm/omapdrm/omap_connector.c
parent531efb380c6d11025e1afe8ef7300c26f0f1b226 (diff)
drm/omap: omap_display_timings: Use display_flags for pixel data edge
In preparation to move the stack to use the generic videmode struct for display timing information use display_flags for pixel data edge. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/gpu/drm/omapdrm/omap_connector.c')
-rw-r--r--drivers/gpu/drm/omapdrm/omap_connector.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_connector.c b/drivers/gpu/drm/omapdrm/omap_connector.c
index f3e9bcf1f784..5fa15da78a8c 100644
--- a/drivers/gpu/drm/omapdrm/omap_connector.c
+++ b/drivers/gpu/drm/omapdrm/omap_connector.c
@@ -107,8 +107,7 @@ void copy_timings_drm_to_omap(struct omap_video_timings *timings,
107 else 107 else
108 timings->flags |= DISPLAY_FLAGS_VSYNC_LOW; 108 timings->flags |= DISPLAY_FLAGS_VSYNC_LOW;
109 109
110 timings->data_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE; 110 timings->flags |= DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE;
111 timings->flags |= DISPLAY_FLAGS_DE_HIGH;
112 timings->sync_pclk_edge = OMAPDSS_DRIVE_SIG_FALLING_EDGE; 111 timings->sync_pclk_edge = OMAPDSS_DRIVE_SIG_FALLING_EDGE;
113} 112}
114 113