diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2010-06-30 12:56:48 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2010-06-30 12:56:48 -0400 |
commit | 37b348059b1c15d7b381cd3df3db52bd9ee6613e (patch) | |
tree | 271827c0dc8fe751c1f072d8110d15fb5f6ed25f /src/radeon_bios.c | |
parent | c8ea942bd0e9d1c055d50b94440aa4dae425f20b (diff) |
remove rv100 quirk
Some RV100 cards with 2 VGA ports show up with DVI+VGA, however
some boards with DVI+VGA have the same subsystem ids. Better
to have a VGA port show up as DVI than having a non-useable
DVI port.
reported by DHR in irc.
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Diffstat (limited to 'src/radeon_bios.c')
-rw-r--r-- | src/radeon_bios.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c index 7d615c06..5810bdb6 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -548,15 +548,6 @@ static void RADEONApplyLegacyQuirks(ScrnInfoPtr pScrn, int index) } } - /* Some RV100 cards with 2 VGA ports show up with DVI+VGA */ - if (info->Chipset == PCI_CHIP_RV100_QY && - PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1002 && - PCI_SUB_DEVICE_ID(info->PciInfo) == 0x013a) { - if (info->BiosConnector[index].ConnectorType == CONNECTOR_DVI_I) { - info->BiosConnector[index].ConnectorType = CONNECTOR_VGA; - } - } - /* X300 card with extra non-existent DVI port */ if (info->Chipset == PCI_CHIP_RV370_5B60 && PCI_SUB_VENDOR_ID(info->PciInfo) == 0x17af && |