Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 250571
b: refs/heads/master
c: 776f2b7
h: refs/heads/master
i:
  250569: 70d1c54
  250567: 11db99e
v: v3
  • Loading branch information
Alex Deucher authored and Dave Airlie committed May 9, 2011
1 parent e11cf23 commit 9aa4082
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: d4a3b10c16a1bdb09483233bd7aeac684ccc160a
refs/heads/master: 776f2b7cb473baa52cdeee9804073342dee7d7cb
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 9aa4082

Please sign in to comment.