xf86-video-ati: Branch 'randr-1.2'

Alex Deucher agd5f at kemper.freedesktop.org
Mon Aug 6 21:43:53 PDT 2007


 src/radeon_bios.c |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

New commits:
diff-tree a88a0e77eec514325b4d07bf7be9fb04e6f8e244 (from 3752808d6c08a9727370ef8d79088e787791e131)
Author: Alex Deucher <alex at botch2.com>
Date:   Tue Aug 7 00:43:20 2007 -0400

    RADEON: minor fix to legacy bios connector table

diff --git a/src/radeon_bios.c b/src/radeon_bios.c
index 696fee4..9e167b5 100644
--- a/src/radeon_bios.c
+++ b/src/radeon_bios.c
@@ -239,11 +239,8 @@ static Bool RADEONGetLegacyConnectorInfo
 	    tmp = RADEON_BIOS16(entry);
 	    info->BiosConnector[i].ConnectorType = (tmp >> 12) & 0xf;
 	    info->BiosConnector[i].DDCType = (tmp >> 8) & 0xf;
-	    info->BiosConnector[i].DACType = tmp & 0x3;
-	    if (tmp & 0x10)
-		info->BiosConnector[i].TMDSType = TMDS_EXT;
-	    else
-		info->BiosConnector[i].TMDSType = TMDS_INT;
+	    info->BiosConnector[i].DACType = tmp & 0x1;
+	    info->BiosConnector[i].TMDSType = tmp & 0x10;
 
 	}
     } else {


More information about the xorg-commit mailing list