aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/exynos/exynos_drm_vidi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_vidi.c')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_vidi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_vidi.c b/drivers/gpu/drm/exynos/exynos_drm_vidi.c
index 9b97105ddc54..59d85ef04650 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_vidi.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_vidi.c
@@ -100,7 +100,7 @@ static int vidi_enable_vblank(struct exynos_drm_crtc *crtc)
100 /* 100 /*
101 * in case of page flip request, vidi_finish_pageflip function 101 * in case of page flip request, vidi_finish_pageflip function
102 * will not be called because direct_vblank is true and then 102 * will not be called because direct_vblank is true and then
103 * that function will be called by crtc_ops->win_commit callback 103 * that function will be called by crtc_ops->update_plane callback
104 */ 104 */
105 schedule_work(&ctx->work); 105 schedule_work(&ctx->work);
106 106
@@ -118,7 +118,7 @@ static void vidi_disable_vblank(struct exynos_drm_crtc *crtc)
118 ctx->vblank_on = false; 118 ctx->vblank_on = false;
119} 119}
120 120
121static void vidi_win_commit(struct exynos_drm_crtc *crtc, unsigned int win) 121static void vidi_update_plane(struct exynos_drm_crtc *crtc, unsigned int win)
122{ 122{
123 struct vidi_context *ctx = crtc->ctx; 123 struct vidi_context *ctx = crtc->ctx;
124 struct exynos_drm_plane *plane; 124 struct exynos_drm_plane *plane;
@@ -179,7 +179,7 @@ static const struct exynos_drm_crtc_ops vidi_crtc_ops = {
179 .disable = vidi_disable, 179 .disable = vidi_disable,
180 .enable_vblank = vidi_enable_vblank, 180 .enable_vblank = vidi_enable_vblank,
181 .disable_vblank = vidi_disable_vblank, 181 .disable_vblank = vidi_disable_vblank,
182 .win_commit = vidi_win_commit, 182 .update_plane = vidi_update_plane,
183}; 183};
184 184
185static void vidi_fake_vblank_handler(struct work_struct *work) 185static void vidi_fake_vblank_handler(struct work_struct *work)