diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-07-28 11:09:10 -0400 |
---|---|---|
committer | Brice Goglin <bgoglin@debian.org> | 2008-08-02 18:47:30 +0200 |
commit | 91e75689d4ae42742b932aef9bbade85f9578d70 (patch) | |
tree | 30c438dda6a5e4bd7d54ad4031be30eb56ca1ebb | |
parent | d12e519bed2e91e4c19a39e26020fda1f4548956 (diff) | |
download | xf86-video-ati-frc-91e75689d4ae42742b932aef9bbade85f9578d70.tar.gz xf86-video-ati-frc-91e75689d4ae42742b932aef9bbade85f9578d70.tar.bz2 |
Add quirk for oem x300 card
- debian bug 492457
(cherry picked from commit d5799ac53c3e1b2ca1da97780b171a44060c3aad)
-rw-r--r-- | src/radeon_bios.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c index 35e6960..adedeb3 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -481,6 +481,16 @@ static void RADEONApplyLegacyQuirks(ScrnInfoPtr pScrn, int index) } } + /* X300 card with extra non-existent DVI port */ + if (info->Chipset == PCI_CHIP_RV370_5B60 && + PCI_SUB_VENDOR_ID(info->PciInfo) == 0x17af && + PCI_SUB_DEVICE_ID(info->PciInfo) == 0x201e && + index == 2) { + if (info->BiosConnector[index].ConnectorType == CONNECTOR_DVI_I) { + info->BiosConnector[index].valid = FALSE; + } + } + } static Bool RADEONGetLegacyConnectorInfoFromBIOS (ScrnInfoPtr pScrn) |