From 2a9bc6be3246ec230b181391221e3a46beb94a23 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Mon, 29 Dec 2008 09:05:16 +1000 Subject: radeon: a-bit motherboard has no DVI output thanks to ciaranm for finding this. --- src/radeon_atombios.c | 7 +++++++ 1 file changed, 7 insertions(+) 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) && -- cgit v1.2.3