summaryrefslogtreecommitdiff
path: root/src/atombios_crtc.c
diff options
context:
space:
mode:
authorAlex Deucher <alexdeucher@gmail.com>2009-01-26 02:40:41 -0500
committerAlex Deucher <alexdeucher@gmail.com>2009-01-26 02:40:41 -0500
commit93ed767255b60fbdf5b416b9bd06c366036a5141 (patch)
tree72fe68add95260e658e81bf255995eba24b3ce4b /src/atombios_crtc.c
parentb515eee4b1cafae78ed39cd91c18b4f5e671b20b (diff)
Fix off by one when printing encoder name
- also cleanup some debugging output
Diffstat (limited to 'src/atombios_crtc.c')
-rw-r--r--src/atombios_crtc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/atombios_crtc.c b/src/atombios_crtc.c
index 1957e1d7..9f8bc690 100644
--- a/src/atombios_crtc.c
+++ b/src/atombios_crtc.c
@@ -323,11 +323,11 @@ atombios_crtc_set_pll(xf86CrtcPtr crtc, DisplayModePtr mode, int pll_flags)
data.exec.pspace = ptr;
if (RHDAtomBiosFunc(info->atomBIOS->scrnIndex, info->atomBIOS, ATOMBIOS_EXEC, &data) == ATOM_SUCCESS) {
- ErrorF("Set CRTC PLL success\n");
+ ErrorF("Set CRTC %d PLL success\n", radeon_crtc->crtc_id);
return;
}
- ErrorF("Set CRTC PLL failed\n");
+ ErrorF("Set CRTC %d PLL failed\n", radeon_crtc->crtc_id);
return;
}