diff options
author | Prathyush K <prathyush.k@samsung.com> | 2012-12-06 20:16:01 +0530 |
---|---|---|
committer | Inki Dae <daeinki@gmail.com> | 2012-12-13 06:05:43 -0800 |
commit | 8137a2e21a3465d91d86b49cfebcc370438b77bd (patch) | |
tree | c865d462600d5c8d65bdb04c944eb606fd90a278 /drivers/gpu/drm/exynos/exynos_drm_hdmi.h | |
parent | f74085a9f87087d70028dcc18563dba4a42ce32c (diff) | |
download | blackbird-obmc-linux-8137a2e21a3465d91d86b49cfebcc370438b77bd.tar.gz blackbird-obmc-linux-8137a2e21a3465d91d86b49cfebcc370438b77bd.zip |
drm/exynos: move hdmi's wait_for_vblank to manager_ops
The wait_for_vblank callback of hdmi and mixer is now moved from
overlay_ops to manager_ops.
Signed-off-by: Prathyush K <prathyush.k@samsung.com>
Signed-off-by: Inki Dae <inki.dae@samsung.com>
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_hdmi.h')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_hdmi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_hdmi.h b/drivers/gpu/drm/exynos/exynos_drm_hdmi.h index 54b522353e48..fcc3093ec8fe 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_hdmi.h +++ b/drivers/gpu/drm/exynos/exynos_drm_hdmi.h @@ -65,10 +65,10 @@ struct exynos_mixer_ops { int (*iommu_on)(void *ctx, bool enable); int (*enable_vblank)(void *ctx, int pipe); void (*disable_vblank)(void *ctx); + void (*wait_for_vblank)(void *ctx); void (*dpms)(void *ctx, int mode); /* overlay */ - void (*wait_for_vblank)(void *ctx); void (*win_mode_set)(void *ctx, struct exynos_drm_overlay *overlay); void (*win_commit)(void *ctx, int zpos); void (*win_disable)(void *ctx, int zpos); |