diff options
author | Dave Airlie <airlied@linux.ie> | 2008-01-03 18:56:16 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2008-01-03 18:56:16 +1000 |
commit | 394c52273328e90518568b694ee79dc1a8dab651 (patch) | |
tree | de6d935848ed4a17a666c8643bf4781ee83dab1e | |
parent | 1c647279f021d01e110980727b7c7dd7efae1642 (diff) |
r500: tvout avoid doing dpms here it makes my tv mode go all crappy
need to investigate further
-rw-r--r-- | src/atombios_output.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/atombios_output.c b/src/atombios_output.c index 83b5d927..8098185c 100644 --- a/src/atombios_output.c +++ b/src/atombios_output.c @@ -473,12 +473,11 @@ 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 (OUTPUT_IS_TV) { + } else if (0 /*OUTPUT_IS_TV*/) { ErrorF("AGD: tv dpms\n"); if (radeon_output->devices & ATOM_DEVICE_TV1_SUPPORT) atombios_device_dpms(output, ATOM_DEVICE_TV1_SUPPORT, mode); } - #if 1 /* release card lock */ tmp = INREG(0x0028); |