diff options
Diffstat (limited to 'drivers/gpu/drm/exynos/exynos_drm_fimd.c')
-rw-r--r-- | drivers/gpu/drm/exynos/exynos_drm_fimd.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c index 785101210d22..81bc34253510 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c +++ b/drivers/gpu/drm/exynos/exynos_drm_fimd.c | |||
@@ -607,7 +607,7 @@ static void fimd_shadow_protect_win(struct fimd_context *ctx, | |||
607 | writel(val, ctx->regs + reg); | 607 | writel(val, ctx->regs + reg); |
608 | } | 608 | } |
609 | 609 | ||
610 | static void fimd_win_commit(struct exynos_drm_crtc *crtc, unsigned int win) | 610 | static void fimd_update_plane(struct exynos_drm_crtc *crtc, unsigned int win) |
611 | { | 611 | { |
612 | struct fimd_context *ctx = crtc->ctx; | 612 | struct fimd_context *ctx = crtc->ctx; |
613 | struct exynos_drm_plane *plane; | 613 | struct exynos_drm_plane *plane; |
@@ -715,7 +715,7 @@ static void fimd_win_commit(struct exynos_drm_crtc *crtc, unsigned int win) | |||
715 | atomic_set(&ctx->win_updated, 1); | 715 | atomic_set(&ctx->win_updated, 1); |
716 | } | 716 | } |
717 | 717 | ||
718 | static void fimd_win_disable(struct exynos_drm_crtc *crtc, unsigned int win) | 718 | static void fimd_disable_plane(struct exynos_drm_crtc *crtc, unsigned int win) |
719 | { | 719 | { |
720 | struct fimd_context *ctx = crtc->ctx; | 720 | struct fimd_context *ctx = crtc->ctx; |
721 | struct exynos_drm_plane *plane; | 721 | struct exynos_drm_plane *plane; |
@@ -785,7 +785,7 @@ static void fimd_disable(struct exynos_drm_crtc *crtc) | |||
785 | * a destroyed buffer later. | 785 | * a destroyed buffer later. |
786 | */ | 786 | */ |
787 | for (i = 0; i < WINDOWS_NR; i++) | 787 | for (i = 0; i < WINDOWS_NR; i++) |
788 | fimd_win_disable(crtc, i); | 788 | fimd_disable_plane(crtc, i); |
789 | 789 | ||
790 | fimd_enable_vblank(crtc); | 790 | fimd_enable_vblank(crtc); |
791 | fimd_wait_for_vblank(crtc); | 791 | fimd_wait_for_vblank(crtc); |
@@ -880,8 +880,8 @@ static const struct exynos_drm_crtc_ops fimd_crtc_ops = { | |||
880 | .enable_vblank = fimd_enable_vblank, | 880 | .enable_vblank = fimd_enable_vblank, |
881 | .disable_vblank = fimd_disable_vblank, | 881 | .disable_vblank = fimd_disable_vblank, |
882 | .wait_for_vblank = fimd_wait_for_vblank, | 882 | .wait_for_vblank = fimd_wait_for_vblank, |
883 | .win_commit = fimd_win_commit, | 883 | .update_plane = fimd_update_plane, |
884 | .win_disable = fimd_win_disable, | 884 | .disable_plane = fimd_disable_plane, |
885 | .te_handler = fimd_te_handler, | 885 | .te_handler = fimd_te_handler, |
886 | .clock_enable = fimd_dp_clock_enable, | 886 | .clock_enable = fimd_dp_clock_enable, |
887 | }; | 887 | }; |