Commit 20b24005 authored by Francisco Jerez's avatar Francisco Jerez Committed by Ben Skeggs

drm/nouveau: Add another Zotac FX5200 TV-out quirk.

Signed-off-by: default avatarFrancisco Jerez <currojerez@riseup.net>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent a5afb775
...@@ -120,9 +120,10 @@ static bool ...@@ -120,9 +120,10 @@ static bool
get_tv_detect_quirks(struct drm_device *dev, uint32_t *pin_mask) get_tv_detect_quirks(struct drm_device *dev, uint32_t *pin_mask)
{ {
/* Zotac FX5200 */ /* Zotac FX5200 */
if ((dev->pdev->device == 0x0322) && if (dev->pdev->device == 0x0322 &&
(dev->pdev->subsystem_vendor == 0x19da) && dev->pdev->subsystem_vendor == 0x19da &&
(dev->pdev->subsystem_device == 0x2035)) { (dev->pdev->subsystem_device == 0x1035 ||
dev->pdev->subsystem_device == 0x2035)) {
*pin_mask = 0xc; *pin_mask = 0xc;
return false; return false;
} }
......
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