Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0cc4d430 authored by Chris Wilson's avatar Chris Wilson Committed by Eric Anholt
Browse files

drm/i915: Fix panel fitting regression since 734b4157

The crtc mode fixup is run after the encoders adjust the mode to fit on
their output, so don't reset the mode!

Fixes:

  Bug 29057 - display corruption under 800x600 on netbook
              (1024x600) with 'Full Aspect' scaling
  https://bugs.freedesktop.org/show_bug.cgi?id=29057



Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
Tested-by: default avatarXun Fang <xunx.fang@intel.com>
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent fbd41a7e
Loading
Loading
Loading
Loading
+0 −2
Original line number Original line Diff line number Diff line
@@ -2371,8 +2371,6 @@ static bool intel_crtc_mode_fixup(struct drm_crtc *crtc,
		if (mode->clock * 3 > 27000 * 4)
		if (mode->clock * 3 > 27000 * 4)
			return MODE_CLOCK_HIGH;
			return MODE_CLOCK_HIGH;
	}
	}

	drm_mode_set_crtcinfo(adjusted_mode, 0);
	return true;
	return true;
}
}