diff options
author | Alex Deucher <alex@botchco.com> | 2008-06-27 20:36:54 -0400 |
---|---|---|
committer | Alex Deucher <alex@botchco.com> | 2008-06-27 20:36:54 -0400 |
commit | cfaa23d925e3c062cf87ea844566ac11ea02d69e (patch) | |
tree | 2c7cf01957d78682d80baf536122b003e6c7d7dd /src/radeon_bios.c | |
parent | 31c27ffcb3c4c5334cf726ecd4e293a678b2a1ea (diff) |
RADEON: IGP VGA fixes take 2
It seems only RS300/350/400/480 are missing the primary dac
See bug 15708
Diffstat (limited to 'src/radeon_bios.c')
-rw-r--r-- | src/radeon_bios.c | 4 |
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) |