Commit f0d15402 authored by Ben Skeggs's avatar Ben Skeggs
Browse files

drm/nouveau/kms: avoid adding scaler-only modes the same as the panel's native mode



Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 576f7911
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -672,7 +672,9 @@ nouveau_connector_scaler_modes_add(struct drm_connector *connector)

	while (mode->hdisplay) {
		if (mode->hdisplay <= native->hdisplay &&
		    mode->vdisplay <= native->vdisplay) {
		    mode->vdisplay <= native->vdisplay &&
		    (mode->hdisplay != native->hdisplay ||
		     mode->vdisplay != native->vdisplay)) {
			m = drm_cvt_mode(dev, mode->hdisplay, mode->vdisplay,
					 drm_mode_vrefresh(native), false,
					 false, false);