summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/radeon_display.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/radeon_display.c b/src/radeon_display.c
index a7ebabb7..d07bf6f0 100644
--- a/src/radeon_display.c
+++ b/src/radeon_display.c
@@ -1190,15 +1190,17 @@ static void RADEONQueryConnectedDisplays(ScrnInfoPtr pScrn)
pRADEONEnt->PortInfo[1].MonInfo = NULL;
} else {
if (pRADEONEnt->PortInfo[0].MonInfo) {
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "EDID data from the display on port 1 ----------------------\n");
- xf86PrintEDID(pRADEONEnt->PortInfo[0].MonInfo );
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO, "EDID data from the display on 1st port ----------------------\n");
+ xf86PrintEDID( pRADEONEnt->PortInfo[0].MonInfo );
}
if (pRADEONEnt->PortInfo[1].MonInfo) {
- xf86DrvMsg(pScrn->scrnIndex, X_INFO, "EDID data from the display on port 2-----------------------\n");
- xf86PrintEDID(pRADEONEnt->PortInfo[1].MonInfo );
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO, "EDID data from the display on 2nd port -----------------------\n");
+ xf86PrintEDID( pRADEONEnt->PortInfo[1].MonInfo );
}
}
+
+ xf86DrvMsg(pScrn->scrnIndex, X_INFO, "\n");
return;
}