Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250577
b: refs/heads/master
c: 269dc2d
h: refs/heads/master
i:
  250575: 3480626
v: v3
  • Loading branch information
Dave Airlie committed May 9, 2011
1 parent 90a1c11 commit 14863b2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 000703f44c77b152cd966eaf06f4ab043274ff46
refs/heads/master: 269dc2d9194f74b920647e0f2ed0d822dc431770
18 changes: 12 additions & 6 deletions trunk/drivers/gpu/drm/radeon/radeon_combios.c
Original file line number Diff line number Diff line change
Expand Up @@ -544,20 +544,26 @@ static struct radeon_i2c_bus_rec combios_setup_i2c_bus(struct radeon_device *rde
rdev->family == CHIP_RS480)
ddc_line = RADEON_GPIOPAD_MASK;
else if (rdev->family == CHIP_R300 ||
rdev->family == CHIP_R350)
rdev->family == CHIP_R350) {
ddc_line = RADEON_GPIO_DVI_DDC;
else
ddc = DDC_DVI;
} else
ddc_line = RADEON_GPIO_MONID;
break;
case DDC_CRT2:
if (rdev->family == CHIP_R200 ||
rdev->family == CHIP_R300 ||
rdev->family == CHIP_R350)
rdev->family == CHIP_R350) {
ddc_line = RADEON_GPIO_DVI_DDC;
else if (rdev->family == CHIP_RS300 ||
rdev->family >= CHIP_RV350)
ddc = DDC_DVI;
} else if (rdev->family == CHIP_RS300 ||
rdev->family == CHIP_RS400 ||
rdev->family == CHIP_RS480)
ddc_line = RADEON_GPIO_MONID;
else
else if (rdev->family >= CHIP_RV350) {
ddc_line = RADEON_GPIO_MONID;
ddc = DDC_MONID;
} else
ddc_line = RADEON_GPIO_CRT2_DDC;
break;
}
Expand Down

0 comments on commit 14863b2

Please sign in to comment.