diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2016-09-22 07:06:58 -0400 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2016-11-02 04:48:18 -0400 |
commit | 3fa3ab4a881b9c464cb3168b476825ae5a02bfa6 (patch) | |
tree | 1d8ab4666824cd88f09e25e97867281298a236d8 /drivers/gpu/drm/omapdrm/omap_connector.c | |
parent | 6b44cd2748d6efa09a83fe97a2d35fb90f80e489 (diff) |
drm/omap: omap_display_timings: Use display_flags for DE level
In preparation to move the stack to use the generic videmode struct for
display timing information use display_flags for DE level.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/omapdrm/omap_connector.c b/drivers/gpu/drm/omapdrm/omap_connector.c index 695386256d18..8817e38761ae 100644 --- a/drivers/gpu/drm/omapdrm/omap_connector.c +++ b/drivers/gpu/drm/omapdrm/omap_connector.c | |||
@@ -107,7 +107,7 @@ void copy_timings_drm_to_omap(struct omap_video_timings *timings, | |||
107 | timings->flags |= DISPLAY_FLAGS_VSYNC_LOW; | 107 | timings->flags |= DISPLAY_FLAGS_VSYNC_LOW; |
108 | 108 | ||
109 | timings->data_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE; | 109 | timings->data_pclk_edge = OMAPDSS_DRIVE_SIG_RISING_EDGE; |
110 | timings->de_level = OMAPDSS_SIG_ACTIVE_HIGH; | 110 | timings->flags |= DISPLAY_FLAGS_DE_HIGH; |
111 | timings->sync_pclk_edge = OMAPDSS_DRIVE_SIG_FALLING_EDGE; | 111 | timings->sync_pclk_edge = OMAPDSS_DRIVE_SIG_FALLING_EDGE; |
112 | } | 112 | } |
113 | 113 | ||