summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Airlie <airlied@linux.ie>2008-12-29 09:05:16 +1000
committerDave Airlie <airlied@linux.ie>2008-12-29 09:05:16 +1000
commit2a9bc6be3246ec230b181391221e3a46beb94a23 (patch)
treeaf790f357bb13ec1deaa78c7195cc4795fd872e9
parenteccf3fed2be54f5c02fefef32e39c4084acbbe22 (diff)
radeon: a-bit motherboard has no DVI output
thanks to ciaranm for finding this.
-rw-r--r--src/radeon_atombios.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c
index 3cd7eae9..b674a415 100644
--- a/src/radeon_atombios.c
+++ b/src/radeon_atombios.c
@@ -1530,6 +1530,13 @@ static void RADEONApplyATOMQuirks(ScrnInfoPtr pScrn, int index)
info->BiosConnector[index].ConnectorType = CONNECTOR_DVI_D;
}
}
+ /* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */
+ if ((info->Chipset == PCI_CHIP_RS600_7941) &&
+ (PCI_SUB_VENDOR_ID(info->PciInfo) == 0x147b) &&
+ (PCI_SUB_DEVICE_ID(info->PciInfo) == 0x2412)) {
+ if (info->BiosConnector[index].ConnectorType == CONNECTOR_DVI_I)
+ info->BiosConnector[index].valid = FALSE;
+ }
/* Falcon NW laptop lists vga ddc line for LVDS */
if ((info->Chipset == PCI_CHIP_RV410_5653) &&