Commit 2b1e8d05 authored by Tvrtko Ursulin's avatar Tvrtko Ursulin Committed by Ben Hutchings

drm/radeon/kms: extend the Fujitsu D3003-S2 board connector quirk to cover later silicon stepping

commit 52e9b39d upstream.

There is a more recent APU stepping with a new PCI ID
shipping in the same board by Fujitsu which needs the
same quirk to correctly mark the back plane connectors.
Signed-off-by: default avatarTvrtko Ursulin <tvrtko.ursulin@onelan.co.uk>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarBen Hutchings <ben@decadent.org.uk>
parent 6be4d300
...@@ -446,7 +446,7 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev, ...@@ -446,7 +446,7 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev,
} }
/* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */ /* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */
if ((dev->pdev->device == 0x9802) && if (((dev->pdev->device == 0x9802) || (dev->pdev->device == 0x9806)) &&
(dev->pdev->subsystem_vendor == 0x1734) && (dev->pdev->subsystem_vendor == 0x1734) &&
(dev->pdev->subsystem_device == 0x11bd)) { (dev->pdev->subsystem_device == 0x11bd)) {
if (*connector_type == DRM_MODE_CONNECTOR_VGA) { if (*connector_type == DRM_MODE_CONNECTOR_VGA) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment