diff options
author | Dave Airlie <airlied@linux.ie> | 2006-09-23 07:26:44 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2006-09-23 07:26:44 +1000 |
commit | 8d4ae98c528a2309dc3c545893dbba2e7f76916c (patch) | |
tree | b657ca3f818140815f4832343c80f5d9ef69d92d /src/radeon_display.c | |
parent | 65b54847c5e79b2ec3cb1a08b265229443c9deb9 (diff) |
radeon: align some output with superpatch
Diffstat (limited to 'src/radeon_display.c')
-rw-r--r-- | src/radeon_display.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/radeon_display.c b/src/radeon_display.c index a7ebabb..d07bf6f 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; } |