summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Garrett <mjg59@srcf.ucam.org>2007-09-13 01:37:19 +0100
committerMatthew Garrett <mjg59@srcf.ucam.org>2007-09-13 01:37:19 +0100
commit97b73f041c501404325708b3223149fb1d7cd018 (patch)
tree4e849c5daccee8b4f7f0676c1d6748137d04bc80
parent0cbe457a1e39ba1fa8dad51683c3fbc9b26052df (diff)
Even less magic :(((
-rw-r--r--xorg/avivo_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xorg/avivo_output.c b/xorg/avivo_output.c
index 1aae462..f613395 100644
--- a/xorg/avivo_output.c
+++ b/xorg/avivo_output.c
@@ -201,7 +201,7 @@ avivo_output_tmds1_dpms(xf86OutputPtr output, int mode)
switch(mode) {
case DPMSModeOn:
OUTREG(AVIVO_TMDSA_CLOCK_ENABLE, 1);
- OUTREG(AVIVO_TMDSA_TRANSMITTER_ENABLE, 0x1F);
+ OUTREG(AVIVO_TMDSA_TRANSMITTER_ENABLE, (AVIVO_TMDSA_TRANSMITTER_ENABLE_TX0_ENABLE | AVIVO_TMDSA_TRANSMITTER_ENABLE_LNKC0EN | AVIVO_TMDSA_TRANSMITTER_ENABLE_LNKD00EN | AVIVO_TMDSA_TRANSMITTER_ENABLE_LNKD01EN | AVIVO_TMDSA_TRANSMITTER_ENABLE_LNKD02EN));
break;
case DPMSModeStandby:
case DPMSModeSuspend: