mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
drm/qxl: 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/f35bc322f7af69ba0fea734d58b4daf5e0cd9786.1455540137.git.palminha@synopsys.com
This commit is contained in:
parent
1d20642c79
commit
4a71396012
1 changed files with 0 additions and 9 deletions
|
@ -734,14 +734,6 @@ static void qxl_enc_dpms(struct drm_encoder *encoder, int mode)
|
||||||
DRM_DEBUG("\n");
|
DRM_DEBUG("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool qxl_enc_mode_fixup(struct drm_encoder *encoder,
|
|
||||||
const struct drm_display_mode *mode,
|
|
||||||
struct drm_display_mode *adjusted_mode)
|
|
||||||
{
|
|
||||||
DRM_DEBUG("\n");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void qxl_enc_prepare(struct drm_encoder *encoder)
|
static void qxl_enc_prepare(struct drm_encoder *encoder)
|
||||||
{
|
{
|
||||||
DRM_DEBUG("\n");
|
DRM_DEBUG("\n");
|
||||||
|
@ -864,7 +856,6 @@ static struct drm_encoder *qxl_best_encoder(struct drm_connector *connector)
|
||||||
|
|
||||||
static const struct drm_encoder_helper_funcs qxl_enc_helper_funcs = {
|
static const struct drm_encoder_helper_funcs qxl_enc_helper_funcs = {
|
||||||
.dpms = qxl_enc_dpms,
|
.dpms = qxl_enc_dpms,
|
||||||
.mode_fixup = qxl_enc_mode_fixup,
|
|
||||||
.prepare = qxl_enc_prepare,
|
.prepare = qxl_enc_prepare,
|
||||||
.mode_set = qxl_enc_mode_set,
|
.mode_set = qxl_enc_mode_set,
|
||||||
.commit = qxl_enc_commit,
|
.commit = qxl_enc_commit,
|
||||||
|
|
Loading…
Reference in a new issue