drm/panel: ld9040: Add proper definition for prepare and unprepare
authorAjay Kumar <ajaykumar.rs@samsung.com>
Thu, 31 Jul 2014 17:42:08 +0000 (23:12 +0530)
committerThierry Reding <treding@nvidia.com>
Wed, 6 Aug 2014 14:44:12 +0000 (16:44 +0200)
Move out code from enable and disable routines to prepare
and unprepare routines, so that functionality is properly
distributed across all the panel functions.

Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
drivers/gpu/drm/panel/panel-ld9040.c

index 9b40bd05d64d863e2feb36a2c17a44d217b1b658..c6aa7f717fa48f93630199ad6f3ea0dc9e896787 100644 (file)
@@ -215,6 +215,11 @@ static int ld9040_power_off(struct ld9040 *ctx)
 }
 
 static int ld9040_disable(struct drm_panel *panel)
+{
+       return 0;
+}
+
+static int ld9040_unprepare(struct drm_panel *panel)
 {
        struct ld9040 *ctx = panel_to_ld9040(panel);
 
@@ -228,17 +233,7 @@ static int ld9040_disable(struct drm_panel *panel)
        return ld9040_power_off(ctx);
 }
 
-static int ld9040_unprepare(struct drm_panel *panel)
-{
-       return 0;
-}
-
 static int ld9040_prepare(struct drm_panel *panel)
-{
-       return 0;
-}
-
-static int ld9040_enable(struct drm_panel *panel)
 {
        struct ld9040 *ctx = panel_to_ld9040(panel);
        int ret;
@@ -252,11 +247,16 @@ static int ld9040_enable(struct drm_panel *panel)
        ret = ld9040_clear_error(ctx);
 
        if (ret < 0)
-               ld9040_disable(panel);
+               ld9040_unprepare(panel);
 
        return ret;
 }
 
+static int ld9040_enable(struct drm_panel *panel)
+{
+       return 0;
+}
+
 static int ld9040_get_modes(struct drm_panel *panel)
 {
        struct drm_connector *connector = panel->connector;
This page took 0.027148 seconds and 5 git commands to generate.