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

Commit 20b24005 authored by Francisco Jerez's avatar Francisco Jerez Committed by Ben Skeggs
Browse files

drm/nouveau: Add another Zotac FX5200 TV-out quirk.

parent a5afb775
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -120,9 +120,10 @@ static bool
get_tv_detect_quirks(struct drm_device *dev, uint32_t *pin_mask)
{
	/* Zotac FX5200 */
	if ((dev->pdev->device == 0x0322) &&
	    (dev->pdev->subsystem_vendor == 0x19da) &&
	    (dev->pdev->subsystem_device == 0x2035)) {
	if (dev->pdev->device == 0x0322 &&
	    dev->pdev->subsystem_vendor == 0x19da &&
	    (dev->pdev->subsystem_device == 0x1035 ||
	     dev->pdev->subsystem_device == 0x2035)) {
		*pin_mask = 0xc;
		return false;
	}