aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustavo Padovan <gustavo.padovan@collabora.co.uk>2015-09-02 11:31:18 -0300
committerGustavo Padovan <gustavo.padovan@collabora.co.uk>2015-09-08 11:52:20 -0300
commit9b4a0563c7a3caf32020832f87474fdad70fc10e (patch)
tree2f426fdcacbdc470345478f8a200e8fef581e85d
parent3fa67df9ac56e4b2b7988cb9de1299cf78b4402d (diff)
downloaddrm-exynos-9b4a0563c7a3caf32020832f87474fdad70fc10e.tar.gz
drm/exynos: remove exynos_crtc commit() callback
It turns out that .commit() was never executed, because at the time .mode_set_nofb() called it ctx->suspended was still false and .commit() would return. It removes the callback from FIMD DECON 7 and DECON 5433. Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
-rw-r--r--drivers/gpu/drm/exynos/exynos_drm_fimd.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/exynos/exynos_drm_fimd.c b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
index 750a9e6b9e8d92..a3fea004dd797e 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_fimd.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_fimd.c
@@ -889,7 +889,6 @@ static const struct exynos_drm_crtc_ops fimd_crtc_ops = {
.enable = fimd_enable,
.disable = fimd_disable,
.mode_fixup = fimd_mode_fixup,
- .commit = fimd_commit,
.enable_vblank = fimd_enable_vblank,
.disable_vblank = fimd_disable_vblank,
.wait_for_vblank = fimd_wait_for_vblank,