summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/radeon
diff options
context:
space:
mode:
authorTvrtko Ursulin2012-08-20 16:16:04 +0200
committerAlex Deucher2012-08-20 17:09:50 +0200
commit52e9b39d9a89ae33662596bd30e62dd56bddbe73 (patch)
treec3a858ded5e0507c2462a33881ec956bb8966f51 /drivers/gpu/drm/radeon
parentdrm/radeon: fix checking of MSAA renderbuffers on r600-r700 (diff)
downloadkernel-qcow2-linux-52e9b39d9a89ae33662596bd30e62dd56bddbe73.tar.gz
kernel-qcow2-linux-52e9b39d9a89ae33662596bd30e62dd56bddbe73.tar.xz
kernel-qcow2-linux-52e9b39d9a89ae33662596bd30e62dd56bddbe73.zip
drm/radeon/kms: extend the Fujitsu D3003-S2 board connector quirk to cover later silicon stepping
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: Tvrtko Ursulin <tvrtko.ursulin@onelan.co.uk> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/gpu/drm/radeon')
-rw-r--r--drivers/gpu/drm/radeon/radeon_atombios.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c
index f9c21f9d16bc..d67d4f3eb6f4 100644
--- a/drivers/gpu/drm/radeon/radeon_atombios.c
+++ b/drivers/gpu/drm/radeon/radeon_atombios.c
@@ -452,7 +452,7 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev,
}
/* 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_device == 0x11bd)) {
if (*connector_type == DRM_MODE_CONNECTOR_VGA) {