From: Jani Nikula <[email protected]>

platform_enable/disable() is already called in venc_power_on/off(), so
don't do it again in venc_panel_enable/disable().

Signed-off-by: Jani Nikula <[email protected]>
Signed-off-by: Tomi Valkeinen <[email protected]>
---
 drivers/video/omap2/dss/venc.c |   15 +--------------
 1 files changed, 1 insertions(+), 14 deletions(-)

diff --git a/drivers/video/omap2/dss/venc.c b/drivers/video/omap2/dss/venc.c
index f0ba573..eff3505 100644
--- a/drivers/video/omap2/dss/venc.c
+++ b/drivers/video/omap2/dss/venc.c
@@ -479,12 +479,6 @@ static int venc_panel_enable(struct omap_dss_device 
*dssdev)
                goto err1;
        }
 
-       if (dssdev->platform_enable) {
-               r = dssdev->platform_enable(dssdev);
-               if (r)
-                       goto err2;
-       }
-
        venc_power_on(dssdev);
 
        venc.wss_data = 0;
@@ -494,13 +488,9 @@ static int venc_panel_enable(struct omap_dss_device 
*dssdev)
        /* wait couple of vsyncs until enabling the LCD */
        msleep(50);
 
-       mutex_unlock(&venc.venc_lock);
-
-       return r;
-err2:
-       venc_power_off(dssdev);
 err1:
        mutex_unlock(&venc.venc_lock);
+
        return r;
 }
 
@@ -524,9 +514,6 @@ static void venc_panel_disable(struct omap_dss_device 
*dssdev)
        /* wait at least 5 vsyncs after disabling the LCD */
        msleep(100);
 
-       if (dssdev->platform_disable)
-               dssdev->platform_disable(dssdev);
-
        dssdev->state = OMAP_DSS_DISPLAY_DISABLED;
 end:
        mutex_unlock(&venc.venc_lock);
-- 
1.7.0.4

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to