xf86-video-ati: Branch 'master'

Alex Deucher agd5f at kemper.freedesktop.org
Sat Jun 13 08:52:28 PDT 2009


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

New commits:
commit 77e3537d312175a25f0e21cc07c3a96f78c3b35a
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 a55fc3c..6375626 100644
--- a/src/radeon_atombios.c
+++ b/src/radeon_atombios.c
@@ -1633,6 +1633,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