diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2016-09-22 07:07:01 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-11-02 04:48:18 -0400 |
commit | d34afb73c3e8906e558c272229e78c8b265196ba (patch) | |
tree | 7b1ebd29e18603fb180e109d8793730262ecdc15 /drivers/gpu/drm/omapdrm/omap_connector.c | |
parent | f149e17a7bf904c55f69e2aef5a0fc5915e40e04 (diff) |
drm/omap: omap_display_timings: Use display_flags for sync edge
In preparation to move the stack to use the generic videmode struct for
display timing information use display_flags for sync 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.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_connector.c b/drivers/gpu/drm/omapdrm/omap_connector.c index 5fa15da78a8c..562a04d49939 100644 --- a/drivers/gpu/drm/omapdrm/omap_connector.c +++ b/drivers/gpu/drm/omapdrm/omap_connector.c | |||
@@ -107,8 +107,9 @@ 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->flags |= DISPLAY_FLAGS_DE_HIGH | DISPLAY_FLAGS_PIXDATA_POSEDGE; | 110 | timings->flags |= DISPLAY_FLAGS_DE_HIGH | |
111 | timings->sync_pclk_edge = OMAPDSS_DRIVE_SIG_FALLING_EDGE; | 111 | DISPLAY_FLAGS_PIXDATA_POSEDGE | |
112 | DISPLAY_FLAGS_SYNC_NEGEDGE; | ||
112 | } | 113 | } |
113 | 114 | ||
114 | static enum drm_connector_status omap_connector_detect( | 115 | static enum drm_connector_status omap_connector_detect( |