This patch adds dummy definition for prepare and unprepare
routines to s6e8aa0 panel driver.

Signed-off-by: Ajay Kumar <[email protected]>
---
 drivers/gpu/drm/panel/panel-s6e8aa0.c |   12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/drivers/gpu/drm/panel/panel-s6e8aa0.c 
b/drivers/gpu/drm/panel/panel-s6e8aa0.c
index 06e57a2..60694dd 100644
--- a/drivers/gpu/drm/panel/panel-s6e8aa0.c
+++ b/drivers/gpu/drm/panel/panel-s6e8aa0.c
@@ -900,6 +900,16 @@ static int s6e8aa0_disable(struct drm_panel *panel)
        return s6e8aa0_power_off(ctx);
 }
 
+static int s6e8aa0_unprepare(struct drm_panel *panel)
+{
+       return 0;
+}
+
+static int s6e8aa0_prepare(struct drm_panel *panel)
+{
+       return 0;
+}
+
 static int s6e8aa0_enable(struct drm_panel *panel)
 {
        struct s6e8aa0 *ctx = panel_to_s6e8aa0(panel);
@@ -944,6 +954,8 @@ static int s6e8aa0_get_modes(struct drm_panel *panel)
 
 static const struct drm_panel_funcs s6e8aa0_drm_funcs = {
        .disable = s6e8aa0_disable,
+       .unprepare = s6e8aa0_unprepare,
+       .prepare = s6e8aa0_prepare,
        .enable = s6e8aa0_enable,
        .get_modes = s6e8aa0_get_modes,
 };
-- 
1.7.9.5

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

Reply via email to