aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/exynos/exynos_drm_plane.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_plane.c')
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_plane.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_plane.c b/drivers/gpu/drm/exynos/exynos_drm_plane.c
index a729980d3c2f..eb9eec944326 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_plane.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_plane.c
@@ -179,8 +179,8 @@ static void exynos_plane_atomic_update(struct drm_plane *plane,
179 state->src_x >> 16, state->src_y >> 16, 179 state->src_x >> 16, state->src_y >> 16,
180 state->src_w >> 16, state->src_h >> 16); 180 state->src_w >> 16, state->src_h >> 16);
181 181
182 if (exynos_crtc->ops->win_commit) 182 if (exynos_crtc->ops->update_plane)
183 exynos_crtc->ops->win_commit(exynos_crtc, exynos_plane->zpos); 183 exynos_crtc->ops->update_plane(exynos_crtc, exynos_plane->zpos);
184} 184}
185 185
186static void exynos_plane_atomic_disable(struct drm_plane *plane, 186static void exynos_plane_atomic_disable(struct drm_plane *plane,
@@ -192,9 +192,9 @@ static void exynos_plane_atomic_disable(struct drm_plane *plane,
192 if (!old_state->crtc) 192 if (!old_state->crtc)
193 return; 193 return;
194 194
195 if (exynos_crtc->ops->win_disable) 195 if (exynos_crtc->ops->disable_plane)
196 exynos_crtc->ops->win_disable(exynos_crtc, 196 exynos_crtc->ops->disable_plane(exynos_crtc,
197 exynos_plane->zpos); 197 exynos_plane->zpos);
198} 198}
199 199
200static const struct drm_plane_helper_funcs plane_helper_funcs = { 200static const struct drm_plane_helper_funcs plane_helper_funcs = {