diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-09-11 14:25:31 -0400 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-09-11 14:25:31 -0400 |
commit | ac853ca0a950d6147cd6a0b4a1b089f5d2f080ea (patch) | |
tree | 18a64cdc47b31d85ec83909fa8b56b98a9bb39ad | |
parent | a88f60e7b789cd23a79e6e18a7e3fa008d15aa77 (diff) |
atom: fix typo in asus quirks
Should be DVI-I, not DVI-D
-rw-r--r-- | src/radeon_atombios.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index b1cb559..0384456 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -1630,7 +1630,7 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index) (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1043) && (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x01da)) { if (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) - info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D; + info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_I; } /* ASUS HD 3450 board lists the DVI port as HDMI */ @@ -1638,7 +1638,7 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index) (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x1043) && (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x01e2)) { if (info->BiosConnector[index].ConnectorType == CONNECTOR_HDMI_TYPE_A) - info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D; + info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_I; } /* some BIOSes seem to report DAC on HDMI - usually this is a board with |