summaryrefslogtreecommitdiff
path: root/src/radeon_display.c
diff options
context:
space:
mode:
authorAlex Deucher <alex@t41p.hsd1.va.comcast.net>2007-05-15 00:48:31 -0400
committerAlex Deucher <alex@t41p.hsd1.va.comcast.net>2007-05-15 00:48:31 -0400
commit11289f8206cab1a94bd64a3938cf9af50f19497e (patch)
tree3c8718e2f646f0aaa9927c4961c127ff8ae8e0ca /src/radeon_display.c
parentfba1a11e287ebf04cf311645d31299896bad7283 (diff)
RADEON: remove some debugging code
Diffstat (limited to 'src/radeon_display.c')
-rw-r--r--src/radeon_display.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/radeon_display.c b/src/radeon_display.c
index 85a4844b..f0a24ab3 100644
--- a/src/radeon_display.c
+++ b/src/radeon_display.c
@@ -980,7 +980,7 @@ void RADEONEnableDisplay(xf86OutputPtr output, BOOL bEnable)
RADEONOutputPrivatePtr radeon_output;
radeon_output = output->driver_private;
- ErrorF("montype: %d\n", radeon_output->MonType);
+ ErrorF("enable montype: %d\n", radeon_output->MonType);
if (bEnable) {
if (radeon_output->MonType == MT_CRT) {
@@ -1017,12 +1017,10 @@ void RADEONEnableDisplay(xf86OutputPtr output, BOOL bEnable)
}
} else if (radeon_output->MonType == MT_LCD) {
tmp = INREG(RADEON_LVDS_GEN_CNTL);
- ErrorF("read in LVDS reg\n");
tmp |= (RADEON_LVDS_ON | RADEON_LVDS_BLON);
tmp &= ~(RADEON_LVDS_DISPLAY_DIS);
usleep (radeon_output->PanelPwrDly * 1000);
OUTREG(RADEON_LVDS_GEN_CNTL, tmp);
- ErrorF("wrote out LVDS reg\n");
save->lvds_gen_cntl |= (RADEON_LVDS_ON | RADEON_LVDS_BLON);
save->lvds_gen_cntl &= ~(RADEON_LVDS_DISPLAY_DIS);
}