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

Commit 16fde6cd authored by Ben Skeggs's avatar Ben Skeggs
Browse files

drm/nouveau: dcb table quirk for fdo#50830



Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent ce806a30
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -6091,6 +6091,18 @@ apply_dcb_encoder_quirks(struct drm_device *dev, int idx, u32 *conn, u32 *conf)
		}
	}

	/* fdo#50830: connector indices for VGA and DVI-I are backwards */
	if (nv_match_device(dev, 0x0421, 0x3842, 0xc793)) {
		if (idx == 0 && *conn == 0x02000300)
			*conn = 0x02011300;
		else
		if (idx == 1 && *conn == 0x04011310)
			*conn = 0x04000310;
		else
		if (idx == 2 && *conn == 0x02011312)
			*conn = 0x02000312;
	}

	return true;
}