mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/radeon/kms: add quirk for MSI S270
doesn't have a tv-out port Signed-off-by: Alex Deucher <alexdeucher@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
71407c46fe
commit
fd874ad0a0
1 changed files with 6 additions and 0 deletions
|
@ -1715,6 +1715,12 @@ static bool radeon_apply_legacy_tv_quirks(struct drm_device *dev)
|
||||||
dev->pdev->subsystem_device == 0x280a)
|
dev->pdev->subsystem_device == 0x280a)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
/* MSI S270 has non-existent TV port */
|
||||||
|
if (dev->pdev->device == 0x5955 &&
|
||||||
|
dev->pdev->subsystem_vendor == 0x1462 &&
|
||||||
|
dev->pdev->subsystem_device == 0x0131)
|
||||||
|
return false;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue