Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 293815
b: refs/heads/master
c: 4c1b2d2
h: refs/heads/master
i:
  293813: 6ae2fe4
  293811: 8b4296f
  293807: 26f499f
v: v3
  • Loading branch information
Alex Deucher authored and Dave Airlie committed Mar 20, 2012
1 parent 4e41419 commit d8b9d9d
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e00e8b5e760cbbe9067daeae5454d67c44c8d035
refs/heads/master: 4c1b2d2da3451f5c8dd59bd7e05bd9729d2aee05
14 changes: 14 additions & 0 deletions trunk/drivers/gpu/drm/radeon/radeon_atombios.c
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,20 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev,
struct radeon_device *rdev = dev->dev_private;
*i2c_bus = radeon_lookup_i2c_gpio(rdev, 0x93);
}

/* Fujitsu D3003-S2 board lists DVI-I as DVI-D and VGA */
if ((dev->pdev->device == 0x9802) &&
(dev->pdev->subsystem_vendor == 0x1734) &&
(dev->pdev->subsystem_device == 0x11bd)) {
if (*connector_type == DRM_MODE_CONNECTOR_VGA) {
*connector_type = DRM_MODE_CONNECTOR_DVII;
*line_mux = 0x3103;
} else if (*connector_type == DRM_MODE_CONNECTOR_DVID) {
*connector_type = DRM_MODE_CONNECTOR_DVII;
}
}


return true;
}

Expand Down

0 comments on commit d8b9d9d

Please sign in to comment.