As talked about in commit d2aacaf07395 ("drm/panel: Check for already
prepared/enabled in drm_panel"), we want to remove needless code from
panel drivers that was storing and double-checking the
prepared/enabled state. Even if someone was relying on the
double-check before, that double-check is now in the core and not
needed in individual drivers.

Cc: Werner Johansson <werner.johans...@sonymobile.com>
Signed-off-by: Douglas Anderson <diand...@chromium.org>
---

Changes in v2:
- Only handle 1 panel per patch.
- Split removal of prepared/enabled from handling of remove/shutdown.

 .../drm/panel/panel-panasonic-vvx10f034n00.c  | 35 +------------------
 1 file changed, 1 insertion(+), 34 deletions(-)

diff --git a/drivers/gpu/drm/panel/panel-panasonic-vvx10f034n00.c 
b/drivers/gpu/drm/panel/panel-panasonic-vvx10f034n00.c
index 8ba6d8287938..822ca2f971eb 100644
--- a/drivers/gpu/drm/panel/panel-panasonic-vvx10f034n00.c
+++ b/drivers/gpu/drm/panel/panel-panasonic-vvx10f034n00.c
@@ -32,9 +32,6 @@ struct wuxga_nt_panel {
 
        struct regulator *supply;
 
-       bool prepared;
-       bool enabled;
-
        ktime_t earliest_wake;
 
        const struct drm_display_mode *mode;
@@ -53,28 +50,16 @@ static int wuxga_nt_panel_on(struct wuxga_nt_panel 
*wuxga_nt)
 static int wuxga_nt_panel_disable(struct drm_panel *panel)
 {
        struct wuxga_nt_panel *wuxga_nt = to_wuxga_nt_panel(panel);
-       int mipi_ret, bl_ret = 0;
-
-       if (!wuxga_nt->enabled)
-               return 0;
-
-       mipi_ret = mipi_dsi_shutdown_peripheral(wuxga_nt->dsi);
-
-       wuxga_nt->enabled = false;
 
-       return mipi_ret ? mipi_ret : bl_ret;
+       return mipi_dsi_shutdown_peripheral(wuxga_nt->dsi);
 }
 
 static int wuxga_nt_panel_unprepare(struct drm_panel *panel)
 {
        struct wuxga_nt_panel *wuxga_nt = to_wuxga_nt_panel(panel);
 
-       if (!wuxga_nt->prepared)
-               return 0;
-
        regulator_disable(wuxga_nt->supply);
        wuxga_nt->earliest_wake = ktime_add_ms(ktime_get_real(), MIN_POFF_MS);
-       wuxga_nt->prepared = false;
 
        return 0;
 }
@@ -85,9 +70,6 @@ static int wuxga_nt_panel_prepare(struct drm_panel *panel)
        int ret;
        s64 enablewait;
 
-       if (wuxga_nt->prepared)
-               return 0;
-
        /*
         * If the user re-enabled the panel before the required off-time then
         * we need to wait the remaining period before re-enabling regulator
@@ -117,8 +99,6 @@ static int wuxga_nt_panel_prepare(struct drm_panel *panel)
                goto poweroff;
        }
 
-       wuxga_nt->prepared = true;
-
        return 0;
 
 poweroff:
@@ -127,18 +107,6 @@ static int wuxga_nt_panel_prepare(struct drm_panel *panel)
        return ret;
 }
 
-static int wuxga_nt_panel_enable(struct drm_panel *panel)
-{
-       struct wuxga_nt_panel *wuxga_nt = to_wuxga_nt_panel(panel);
-
-       if (wuxga_nt->enabled)
-               return 0;
-
-       wuxga_nt->enabled = true;
-
-       return 0;
-}
-
 static const struct drm_display_mode default_mode = {
        .clock = 164402,
        .hdisplay = 1920,
@@ -178,7 +146,6 @@ static const struct drm_panel_funcs wuxga_nt_panel_funcs = {
        .disable = wuxga_nt_panel_disable,
        .unprepare = wuxga_nt_panel_unprepare,
        .prepare = wuxga_nt_panel_prepare,
-       .enable = wuxga_nt_panel_enable,
        .get_modes = wuxga_nt_panel_get_modes,
 };
 
-- 
2.45.0.rc1.225.g2a3ae87e7f-goog

Reply via email to