mirror of https://gitee.com/openkylin/linux.git
drm/udl: removed optional dummy encoder mode_fixup function.
mode_fixup function for encoder drivers became optional with patch http://patchwork.freedesktop.org/patch/msgid/1455106522-32307-1-git-send-email-palminha@synopsys.com This patch set nukes all the dummy mode_fixup implementations. (made on top of Daniel topic/drm-misc branch) Signed-off-by: Carlos Palminha <palminha@synopsys.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/a7ebfb6c6c333056d0a77d2684c539107ee63589.1455540137.git.palminha@synopsys.com
This commit is contained in:
parent
5954d3a143
commit
dac290d0ec
|
@ -26,13 +26,6 @@ static void udl_encoder_disable(struct drm_encoder *encoder)
|
|||
{
|
||||
}
|
||||
|
||||
static bool udl_mode_fixup(struct drm_encoder *encoder,
|
||||
const struct drm_display_mode *mode,
|
||||
struct drm_display_mode *adjusted_mode)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
static void udl_encoder_prepare(struct drm_encoder *encoder)
|
||||
{
|
||||
}
|
||||
|
@ -54,7 +47,6 @@ udl_encoder_dpms(struct drm_encoder *encoder, int mode)
|
|||
|
||||
static const struct drm_encoder_helper_funcs udl_helper_funcs = {
|
||||
.dpms = udl_encoder_dpms,
|
||||
.mode_fixup = udl_mode_fixup,
|
||||
.prepare = udl_encoder_prepare,
|
||||
.mode_set = udl_encoder_mode_set,
|
||||
.commit = udl_encoder_commit,
|
||||
|
|
Loading…
Reference in New Issue