Commit b3595472 authored by Laurent Pinchart's avatar Laurent Pinchart Committed by Daniel Vetter

drm: arcpgu: Remove CRTC .prepare() helper operation

The CRTC helper .prepare() operation is legacy code, the atomic helpers
prefer the .disable() operation. As the arcpgu driver implements the
.disable() and .prepare() operations identicallly, .prepare() can be
removed.
Signed-off-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
Link: http://patchwork.freedesktop.org/patch/msgid/20170627211621.27767-2-laurent.pinchart+renesas@ideasonboard.com
parent f3f63e6b
...@@ -163,7 +163,6 @@ static const struct drm_crtc_helper_funcs arc_pgu_crtc_helper_funcs = { ...@@ -163,7 +163,6 @@ static const struct drm_crtc_helper_funcs arc_pgu_crtc_helper_funcs = {
.mode_set_nofb = arc_pgu_crtc_mode_set_nofb, .mode_set_nofb = arc_pgu_crtc_mode_set_nofb,
.enable = arc_pgu_crtc_enable, .enable = arc_pgu_crtc_enable,
.disable = arc_pgu_crtc_disable, .disable = arc_pgu_crtc_disable,
.prepare = arc_pgu_crtc_disable,
.atomic_begin = arc_pgu_crtc_atomic_begin, .atomic_begin = arc_pgu_crtc_atomic_begin,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment