From: Gustavo Padovan Date: Thu, 30 Oct 2014 12:00:54 +0000 (+0000) Subject: drm/exynos: Don't touch DPMS when updating overlay planes X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=e7cd81111041e3fbec00999f5629080989090031;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git drm/exynos: Don't touch DPMS when updating overlay planes DPMS settings should only be changed by a full modeset. exynos_plane_update() should only care about updating the planes itself and nothing else. Signed-off-by: Gustavo Padovan Signed-off-by: Inki Dae --- diff --git a/drivers/gpu/drm/exynos/exynos_drm_plane.c b/drivers/gpu/drm/exynos/exynos_drm_plane.c index 843f74175094..4fe3c2b555b1 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_plane.c +++ b/drivers/gpu/drm/exynos/exynos_drm_plane.c @@ -190,7 +190,6 @@ exynos_update_plane(struct drm_plane *plane, struct drm_crtc *crtc, return ret; exynos_plane_commit(plane); - exynos_plane_dpms(plane, DRM_MODE_DPMS_ON); return 0; }