diff options
author | Alex Deucher <alex@botch2.(none)> | 2007-11-15 23:12:30 -0500 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2007-11-15 23:12:30 -0500 |
commit | 52ba3fdd1ce05983fabedff234cfaf4c60fba38d (patch) | |
tree | 45d3e47569e7d0890665c260b06122bd2c0d82a3 /src | |
parent | 7aeb35e5ad1aed6e78a3d8565fbfbfe66232ab45 (diff) |
atombios_dac_detect() takes care of primary vs tv dac itself
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_output.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index 235f838e..ccbc3063 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -687,11 +687,7 @@ void RADEONConnectorFindMonitor(ScrnInfoPtr pScrn, xf86OutputPtr output) if (radeon_output->type == OUTPUT_LVDS) radeon_output->MonType = MT_LCD; if (!radeon_output->MonType) { - if (radeon_output->DACType == DAC_PRIMARY) { - radeon_output->MonType = atombios_dac_detect(pScrn, output); - } else if (radeon_output->DACType == DAC_TVDAC) { - radeon_output->MonType = atombios_dac_detect(pScrn, output); - } + radeon_output->MonType = atombios_dac_detect(pScrn, output); } } } else { |