diff options
author | Alex Deucher <alex@botch2.(none)> | 2007-09-19 19:41:17 -0400 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2007-09-19 19:41:17 -0400 |
commit | 509ca0cb0e1cde905b47db2bbac6f2a58523b279 (patch) | |
tree | 93b094f0797854cedf25434221ee6feafb391b3e | |
parent | 5a59547ef7e986c9613023d941c3354cd476faf1 (diff) |
RADEON: fix external TMDS parsing in legacy bios connector table
-rw-r--r-- | src/radeon_bios.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/radeon_bios.c b/src/radeon_bios.c index 07fbb52..cb96022 100644 --- a/src/radeon_bios.c +++ b/src/radeon_bios.c @@ -242,7 +242,7 @@ static Bool RADEONGetLegacyConnectorInfoFromBIOS (ScrnInfoPtr pScrn) info->BiosConnector[i].ConnectorType = (tmp >> 12) & 0xf; info->BiosConnector[i].DDCType = (tmp >> 8) & 0xf; info->BiosConnector[i].DACType = tmp & 0x1; - info->BiosConnector[i].TMDSType = tmp & 0x10; + info->BiosConnector[i].TMDSType = (tmp >> 4) & 0x1; /* most XPRESS chips seem to specify DDC_CRT2 for their * VGA DDC port, however DDC never seems to work on that |