diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2008-08-06 00:35:15 -0400 |
---|---|---|
committer | Brice Goglin <bgoglin@debian.org> | 2008-08-26 21:20:58 +0200 |
commit | caad65eee3124af2a3d4c005707a621ad8420e15 (patch) | |
tree | a0026310e990c758c99f7b7f56e92a10c5121f82 | |
parent | c063add0cd5559f8b5bb2c0d754d962bfdc16682 (diff) | |
download | xf86-video-ati-frc-caad65eee3124af2a3d4c005707a621ad8420e15.tar.gz xf86-video-ati-frc-caad65eee3124af2a3d4c005707a621ad8420e15.tar.bz2 |
Remove un-needed dac check for single crtc cards
Connector tables should be setup properly already and this
check breaks systems with 2 DACs and 1 crtc like the es1000.
(cherry picked from commit 18429390440a829fb24ed3afd99ccf8278138496)
-rw-r--r-- | src/radeon_output.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index b22442c..53a7e42 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -2749,13 +2749,6 @@ Bool RADEONSetupConnectors(ScrnInfoPtr pScrn) RADEONSetupGenericConnectors(pScrn); } - if (!pRADEONEnt->HasCRTC2) { - for (i = 0; i < RADEON_MAX_BIOS_CONNECTOR; i++) { - if (info->BiosConnector[i].ConnectorType == CONNECTOR_VGA) - info->BiosConnector[i].DACType = DAC_PRIMARY; - } - } - /* parse connector table option */ optstr = (char *)xf86GetOptValString(info->Options, OPTION_CONNECTORTABLE); |