diff options
author | Dave Airlie <airlied@redhat.com> | 2009-08-17 15:50:21 +1000 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2009-08-17 13:24:02 -0400 |
commit | 7d91ae120894dec5361d7ac5a981749fa96eed0e (patch) | |
tree | 39ac778b3ad1dbe1d1ca45dbb0e0d0f86b9ffa3c | |
parent | db7af4cf56a60228110f60f6dc49931f28548cff (diff) |
radeon: move detected monitor type debugging.
We should print this after DAC detection to be useful for TV
-rw-r--r-- | src/radeon_output.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index ee8de6ab..acba31f9 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -274,9 +274,6 @@ radeon_ddc_connected(xf86OutputPtr output) } else MonType = MT_NONE; - xf86DrvMsg(pScrn->scrnIndex, X_INFO, - "Output: %s, Detected Monitor Type: %d\n", output->name, MonType); - return MonType; } @@ -995,6 +992,8 @@ radeon_detect(xf86OutputPtr output) } + xf86DrvMsg(pScrn->scrnIndex, X_INFO, + "Output: %s, Detected Monitor Type: %d\n", output->name, radeon_output->MonType); if (output->MonInfo) { xf86DrvMsg(pScrn->scrnIndex, X_INFO, "EDID data from the display on output: %s ----------------------\n", output->name); |