From cfaa23d925e3c062cf87ea844566ac11ea02d69e Mon Sep 17 00:00:00 2001 From: Alex Deucher Date: Fri, 27 Jun 2008 20:36:54 -0400 Subject: RADEON: IGP VGA fixes take 2 It seems only RS300/350/400/480 are missing the primary dac See bug 15708 --- src/radeon_bios.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/radeon_bios.c') diff --git a/src/radeon_bios.c b/src/radeon_bios.c index 529dda7f..1faada9f 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -529,7 +529,9 @@ static Bool RADEONGetLegacyConnectorInfoFromBIOS (ScrnInfoPtr pScrn) info->BiosConnector[i].DACType = DAC_PRIMARY; /* For RS300/RS350/RS400 chips, there is no primary DAC. Force VGA port to use TVDAC*/ - if (info->IsIGP) + if ((info->ChipFamily == CHIP_FAMILY_RS300) || + (info->ChipFamily == CHIP_FAMILY_RS400) || + (info->ChipFamily == CHIP_FAMILY_RS480)) info->BiosConnector[i].DACType = DAC_TVDAC; if ((tmp >> 4) & 0x1) -- cgit v1.2.3