]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blob
c6fe3c10bf3e74d65bff195db24a0dd638d06273
[thirdparty/kernel/stable-queue.git] /
1 From 52e9b39d9a89ae33662596bd30e62dd56bddbe73 Mon Sep 17 00:00:00 2001
2 From: Tvrtko Ursulin <tvrtko.ursulin@onelan.co.uk>
3 Date: Mon, 20 Aug 2012 15:16:04 +0100
4 Subject: drm/radeon/kms: extend the Fujitsu D3003-S2 board connector quirk to cover later silicon stepping
5
6 From: Tvrtko Ursulin <tvrtko.ursulin@onelan.co.uk>
7
8 commit 52e9b39d9a89ae33662596bd30e62dd56bddbe73 upstream.
9
10 There is a more recent APU stepping with a new PCI ID
11 shipping in the same board by Fujitsu which needs the
12 same quirk to correctly mark the back plane connectors.
13
14 Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@onelan.co.uk>
15 Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
16 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17
18 ---
19 drivers/gpu/drm/radeon/radeon_atombios.c | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22 --- a/drivers/gpu/drm/radeon/radeon_atombios.c
23 +++ b/drivers/gpu/drm/radeon/radeon_atombios.c
24 @@ -452,7 +452,7 @@ static bool radeon_atom_apply_quirks(str
25 }
26
27 /* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */
28 - if ((dev->pdev->device == 0x9802) &&
29 + if (((dev->pdev->device == 0x9802) || (dev->pdev->device == 0x9806)) &&
30 (dev->pdev->subsystem_vendor == 0x1734) &&
31 (dev->pdev->subsystem_device == 0x11bd)) {
32 if (*connector_type == DRM_MODE_CONNECTOR_VGA) {