summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Deucher <alex@botchco.com>2008-06-27 20:36:54 -0400
committerAlex Deucher <alex@botchco.com>2008-06-27 20:36:54 -0400
commitcfaa23d925e3c062cf87ea844566ac11ea02d69e (patch)
tree2c7cf01957d78682d80baf536122b003e6c7d7dd
parent31c27ffcb3c4c5334cf726ecd4e293a678b2a1ea (diff)
RADEON: IGP VGA fixes take 2
It seems only RS300/350/400/480 are missing the primary dac See bug 15708
-rw-r--r--src/radeon_bios.c4
1 files changed, 3 insertions, 1 deletions
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)