diff options
| author | Markus Gapp <markus.gapp@gmx.net> | 2009-06-13 11:51:29 -0400 | 
|---|---|---|
| committer | Alex Deucher <alexdeucher@gmail.com> | 2009-06-13 11:54:36 -0400 | 
| commit | 6dd7659ef17cf400be94676bcaf6c115fd537439 (patch) | |
| tree | 2d03a561245a8aad2e395c914b7b1c0d89452da7 | |
| parent | a00db22e52631ccbf5bbcbd8175802f9b3407521 (diff) | |
Add quirk for asus hd3450 board
Fixes bug 22266
| -rw-r--r-- | src/radeon_atombios.c | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index 3ab5fac5..e740e59a 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -1574,6 +1574,14 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index)  	    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       */ | 
