xf86-video-ati: Branch '6.12-branch'

Alex Deucher agd5f at kemper.freedesktop.org
Sat Jun 13 08:57:32 PDT 2009


 src/radeon_atombios.c |    8 ++++++++
 1 file changed, 8 insertions(+)

New commits:
commit 6dd7659ef17cf400be94676bcaf6c115fd537439
Author: Markus Gapp <markus.gapp at gmx.net>
Date:   Sat Jun 13 11:51:29 2009 -0400

    Add quirk for asus hd3450 board
    
    Fixes bug 22266

diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c
index 3ab5fac..e740e59 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
      */


More information about the xorg-commit mailing list