diff mbox

[PATCHv2,33/45] drm: omapdrm: Remove nested PM get/sync when configuring encoders

Message ID 1433408582-9828-34-git-send-email-tomi.valkeinen@ti.com (mailing list archive)
State New, archived
Headers show

Commit Message

Tomi Valkeinen June 4, 2015, 9:02 a.m. UTC
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

The omap_crtc_encoder_setup() function is always called with the DSS
enabled. Remove the dispc_runtime_get() and dispc_runtime_put() calls.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
---
 drivers/gpu/drm/omapdrm/omap_crtc.c | 4 ----
 1 file changed, 4 deletions(-)
diff mbox

Patch

diff --git a/drivers/gpu/drm/omapdrm/omap_crtc.c b/drivers/gpu/drm/omapdrm/omap_crtc.c
index aa719ebfe787..16f9c07dc4f6 100644
--- a/drivers/gpu/drm/omapdrm/omap_crtc.c
+++ b/drivers/gpu/drm/omapdrm/omap_crtc.c
@@ -374,8 +374,6 @@  static void omap_crtc_encoder_setup(struct drm_crtc *crtc, bool enable)
 
 	DBG("%s: enable=%d", omap_crtc->name, enable);
 
-	dispc_runtime_get();
-
 	for (i = 0; i < priv->num_encoders; i++) {
 		if (priv->encoders[i]->crtc == crtc) {
 			encoder = priv->encoders[i];
@@ -396,8 +394,6 @@  static void omap_crtc_encoder_setup(struct drm_crtc *crtc, bool enable)
 			omap_encoder_set_enabled(encoder, true);
 		}
 	}
-
-	dispc_runtime_put();
 }
 
 /* -----------------------------------------------------------------------------