*** a/src/radeon_atombios.c Tue Apr 7 17:38:59 2009 --- b/src/radeon_atombios.c Sat Jun 13 08:19:37 2009 *************** static void RADEONApplyATOMQuirks(ScrnIn *** 1577,1584 **** --- 1577,1592 ---- (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; + } }