Commit 2c858d84 authored by Alex Deucher's avatar Alex Deucher Committed by Zefan Li

drm/radeon: add connector quirk for fujitsu board

commit 1952f24d upstream.

Vbios connector table lists non-existent VGA port.

Bug:
https://bugs.freedesktop.org/show_bug.cgi?id=83184Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
Signed-off-by: default avatarZefan Li <lizefan@huawei.com>
parent e77f3791
...@@ -463,6 +463,13 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev, ...@@ -463,6 +463,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; return true;
} }
......
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