drm/panel: simple: Add dummy prepare and unprepare routines
This patch adds dummy definition for prepare and unprepare routines to simple panel driver. Signed-off-by: Ajay Kumar <ajaykumar.rs@samsung.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
Родитель
f99a23bd49
Коммит
c0e1d1706a
|
@ -117,6 +117,16 @@ static int panel_simple_disable(struct drm_panel *panel)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int panel_simple_unprepare(struct drm_panel *panel)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int panel_simple_prepare(struct drm_panel *panel)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int panel_simple_enable(struct drm_panel *panel)
|
static int panel_simple_enable(struct drm_panel *panel)
|
||||||
{
|
{
|
||||||
struct panel_simple *p = to_panel_simple(panel);
|
struct panel_simple *p = to_panel_simple(panel);
|
||||||
|
@ -167,6 +177,8 @@ static int panel_simple_get_modes(struct drm_panel *panel)
|
||||||
|
|
||||||
static const struct drm_panel_funcs panel_simple_funcs = {
|
static const struct drm_panel_funcs panel_simple_funcs = {
|
||||||
.disable = panel_simple_disable,
|
.disable = panel_simple_disable,
|
||||||
|
.unprepare = panel_simple_unprepare,
|
||||||
|
.prepare = panel_simple_prepare,
|
||||||
.enable = panel_simple_enable,
|
.enable = panel_simple_enable,
|
||||||
.get_modes = panel_simple_get_modes,
|
.get_modes = panel_simple_get_modes,
|
||||||
};
|
};
|
||||||
|
|
Загрузка…
Ссылка в новой задаче