diff options
author | Dave Airlie <airlied@linux.ie> | 2008-12-29 09:05:45 +1000 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2008-12-29 09:05:45 +1000 |
commit | c877450a75d3fd4a2f200af197c691669966f6f4 (patch) | |
tree | 573e6b8cabacc9c61065305dc2f3c34499ca49bc /src | |
parent | 2a9bc6be3246ec230b181391221e3a46beb94a23 (diff) |
radeon: maybe special handling only needed for DVI port not HDMI one.
fixes ciaranm's rs600 board on radeon DDC
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_atombios.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/radeon_atombios.c b/src/radeon_atombios.c index b674a415..ce1ac03c 100644 --- a/src/radeon_atombios.c +++ b/src/radeon_atombios.c @@ -2052,8 +2052,9 @@ RADEONGetATOMConnectorInfoFromBIOSConnectorTable (ScrnInfoPtr pScrn) else if ((info->ChipFamily == CHIP_FAMILY_RS600) || (info->ChipFamily == CHIP_FAMILY_RS690) || (info->ChipFamily == CHIP_FAMILY_RS740)) { - /* IGP DFP ports use non-standard gpio entries */ - if ((i == ATOM_DEVICE_DFP2_INDEX) || (i == ATOM_DEVICE_DFP3_INDEX)) + /* IGP DVI ports use non-standard gpio entries - HDMI appears to + * possibly be okay - radeonhd channel Dec 29th 2008 */ + if (i == ATOM_DEVICE_DFP2_INDEX) info->BiosConnector[i].ddc_i2c = RADEONLookupGPIOLineForDDC(pScrn, ci.sucI2cId.sbfAccess.bfI2C_LineMux + 1); else |