summaryrefslogtreecommitdiff
path: root/src/radeon_atombios.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-06-28 20:42:49 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-06-28 20:42:49 -0400
commitf39cafc5c4a93a16ac93756473ebb1f33c7881db (patch)
tree7e3a198e97d8382bdd3de222bb72d75a28a214b0 /src/radeon_atombios.c
parent407e676b04117c7ca3dcc0cc072f3552b03c64e5 (diff)
radeon: call hdmi-b connectors dvi in randr
Technically HDMI-B is a glorfied DL DVI, but this is confusing to users, so call it DVI when reporting randr outputs. This allows us to remove two quirks where the bios was actually correct.
Diffstat (limited to 'src/radeon_atombios.c')
-rw-r--r--src/radeon_atombios.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c
index e6542288..f590d5b9 100644
--- a/src/radeon_atombios.c
+++ b/src/radeon_atombios.c
@@ -1625,22 +1625,6 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index)
}
}
- /* ASUS HD 3600 XT board lists the DVI port as HDMI */
- if ((info->Chipset == PCI_CHIP_RV635_9598) &&
- (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1043) &&
- (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x01da)) {
- if (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_B)
- info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D;
- }
-
- /* ASUS HD 3450 board lists the DVI port as HDMI */
- if ((info->Chipset == PCI_CHIP_RV620_95C5) &&
- (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1043) &&
- (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x01e2)) {
- if (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_B)
- info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D;
- }
-
/* some BIOSes seem to report DAC on HDMI - usually this is a board with
* HDMI + VGA reporting as HDMI
*/
@@ -1649,8 +1633,7 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index)
info->BiosConnector[index].devices &= ~(ATOM_DEVICE_DFP_SUPPORT);
info->BiosConnector[index].ConnectorType = CONNECTOR_VGA;
info->BiosConnector[index].connector_object = 0;
- } else
- info->BiosConnector[index].devices &= ~(ATOM_DEVICE_CRT_SUPPORT);
+ }
}
}