diff options
author | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-12-17 18:56:12 -0500 |
---|---|---|
committer | Alex Deucher <alex@t41p.hsd1.va.comcast.net> | 2007-12-17 18:56:12 -0500 |
commit | 44d07c4ccce9acb5bd21a17acb082e91f7225764 (patch) | |
tree | 3c800d89f31e30f38e3acfc557c60e68079f3c7b | |
parent | 4da3782239921eb377216d4de4a9cc5bb55e0e8a (diff) |
RADEON: typo from last commit
-rw-r--r-- | src/radeon_display.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_display.c b/src/radeon_display.c index 95f6b09..6bbd315 100644 --- a/src/radeon_display.c +++ b/src/radeon_display.c @@ -405,6 +405,7 @@ void RADEONEnableDisplay(xf86OutputPtr output, BOOL bEnable) } } else if (radeon_output->DACType == DAC_TVDAC) { info->output_crt2 &= ~(1 << o); + tv_dac_change = 1; if (!info->output_crt2) { if (info->ChipFamily == CHIP_FAMILY_R200) { tmp = INREG(RADEON_FP2_GEN_CNTL); @@ -416,7 +417,6 @@ void RADEONEnableDisplay(xf86OutputPtr output, BOOL bEnable) tmp &= ~RADEON_CRTC2_CRT2_ON; OUTREG(RADEON_CRTC2_GEN_CNTL, tmp); save->crtc2_gen_cntl &= ~RADEON_CRTC2_CRT2_ON; - tv_dac_change = 1; } } } @@ -462,11 +462,11 @@ void RADEONEnableDisplay(xf86OutputPtr output, BOOL bEnable) } } else if (radeon_output->MonType == MT_STV || radeon_output->MonType == MT_CTV) { info->output_tv1 &= ~(1 << o); + tv_dac_change = 2; if (!info->output_tv1) { tmp = INREG(RADEON_TV_MASTER_CNTL); tmp &= ~RADEON_TV_ON; OUTREG(RADEON_TV_MASTER_CNTL, tmp); - tv_dac_change = 2; radeon_output->tv_on = FALSE; } } |