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

Commit 1952f24d authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/radeon: add connector quirk for fujitsu board

Vbios connector table lists non-existent VGA port.

Bug:
https://bugs.freedesktop.org/show_bug.cgi?id=83184



Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
parent f229407d
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -447,6 +447,13 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev,
		}
	}

	/* Fujitsu D3003-S2 board lists DVI-I as DVI-I and VGA */
	if ((dev->pdev->device == 0x9805) &&
	    (dev->pdev->subsystem_vendor == 0x1734) &&
	    (dev->pdev->subsystem_device == 0x11bd)) {
		if (*connector_type == DRM_MODE_CONNECTOR_VGA)
			return false;
	}

	return true;
}