diff options
author | Alex Deucher <alex@cube.(none)> | 2008-03-06 18:33:12 -0500 |
---|---|---|
committer | Alex Deucher <alex@cube.(none)> | 2008-03-06 18:33:12 -0500 |
commit | cb2dc19387c7b6494c47c76d683cf38a48700768 (patch) | |
tree | aaa0c30b9b133eb44d37d0bd216af1cff2376edd /src | |
parent | 77355de48057e5e7e0d5b3f3cf5a7a92220a53b1 (diff) |
AVIVO: fix typo from a previous commit
Leave tv dpms hook disabled or you may get bad interactions
with the shared DAC
Diffstat (limited to 'src')
-rw-r--r-- | src/atombios_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/atombios_output.c b/src/atombios_output.c index 06e5a778..7ae004c7 100644 --- a/src/atombios_output.c +++ b/src/atombios_output.c @@ -720,8 +720,8 @@ atombios_output_dpms(xf86OutputPtr output, int mode) ErrorF("AGD: cv dpms\n"); if (radeon_output->devices & ATOM_DEVICE_CV_SUPPORT) atombios_device_dpms(output, ATOM_DEVICE_CV_SUPPORT, mode); - } else if (radeon_output->MonType == MT_STV || - radeon_output->MonType == MT_CTV) { + } else if (0 /*radeon_output->MonType == MT_STV || + radeon_output->MonType == MT_CTV*/) { ErrorF("AGD: tv dpms\n"); if (radeon_output->devices & ATOM_DEVICE_TV1_SUPPORT) atombios_device_dpms(output, ATOM_DEVICE_TV1_SUPPORT, mode); |