diff options
author | Dave Airlie <airlied@redhat.com> | 2009-04-17 10:30:21 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-04-17 10:30:21 +1000 |
commit | 9dd33cc8346073300312cd5f68de72d9bea1dd6b (patch) | |
tree | 7766f175f0298870699514f6d4b3d71b29917046 /src/radeon_output.c | |
parent | a846ec14dd65bb12f314f83ffb45c4c4be564a5e (diff) |
radeon: tweak ddc fix for all r300s.
Alex seems to think this might affect some other chips
Diffstat (limited to 'src/radeon_output.c')
-rw-r--r-- | src/radeon_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_output.c b/src/radeon_output.c index c6ae2ae6..e545c79c 100644 --- a/src/radeon_output.c +++ b/src/radeon_output.c @@ -222,8 +222,8 @@ radeon_ddc_connected(xf86OutputPtr output) if (radeon_output->pI2CBus) { /* RV410 appears to have a bug where the hw i2c in reset * holds the i2c port in a bad state - switch hw i2c away before - * doing DDC */ - if (info->ChipFamily == CHIP_FAMILY_RV410) { + * doing DDC - do this for all r300s for safety sakes */ + if (IS_R300_VARIANT) { if (radeon_output->ddc_i2c.mask_clk_reg == RADEON_GPIO_VGA_DDC) OUTREG(RADEON_DVI_I2C_CNTL_0, 0x30); else |