diff options
Diffstat (limited to 'drivers/gpu/drm/omapdrm/dss/display.c')
-rw-r--r-- | drivers/gpu/drm/omapdrm/dss/display.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/gpu/drm/omapdrm/dss/display.c b/drivers/gpu/drm/omapdrm/dss/display.c index 372a16ad770f..30060b5e46a2 100644 --- a/drivers/gpu/drm/omapdrm/dss/display.c +++ b/drivers/gpu/drm/omapdrm/dss/display.c | |||
@@ -230,7 +230,7 @@ void videomode_to_omap_video_timings(const struct videomode *vm, | |||
230 | ovt->hsync_len = vm->hsync_len; | 230 | ovt->hsync_len = vm->hsync_len; |
231 | ovt->vactive = vm->vactive; | 231 | ovt->vactive = vm->vactive; |
232 | ovt->vbp = vm->vback_porch; | 232 | ovt->vbp = vm->vback_porch; |
233 | ovt->vfp = vm->vfront_porch; | 233 | ovt->vfront_porch = vm->vfront_porch; |
234 | ovt->vsync_len = vm->vsync_len; | 234 | ovt->vsync_len = vm->vsync_len; |
235 | 235 | ||
236 | ovt->vsync_level = vm->flags & DISPLAY_FLAGS_VSYNC_HIGH ? | 236 | ovt->vsync_level = vm->flags & DISPLAY_FLAGS_VSYNC_HIGH ? |
@@ -263,7 +263,7 @@ void omap_video_timings_to_videomode(const struct omap_video_timings *ovt, | |||
263 | vm->hsync_len = ovt->hsync_len; | 263 | vm->hsync_len = ovt->hsync_len; |
264 | vm->vactive = ovt->vactive; | 264 | vm->vactive = ovt->vactive; |
265 | vm->vback_porch = ovt->vbp; | 265 | vm->vback_porch = ovt->vbp; |
266 | vm->vfront_porch = ovt->vfp; | 266 | vm->vfront_porch = ovt->vfront_porch; |
267 | vm->vsync_len = ovt->vsync_len; | 267 | vm->vsync_len = ovt->vsync_len; |
268 | 268 | ||
269 | if (ovt->hsync_level == OMAPDSS_SIG_ACTIVE_HIGH) | 269 | if (ovt->hsync_level == OMAPDSS_SIG_ACTIVE_HIGH) |