diff options
author | Alex Deucher <alexdeucher@gmail.com> | 2009-11-05 13:11:46 -0500 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2009-11-06 11:35:18 +1000 |
commit | ee59f2b462b0a7d2eb57ae59340d016589fa8e42 (patch) | |
tree | 4eb2f5b2ce1a427bff6348899a79641eabe98c67 /drivers/gpu/drm/radeon/radeon_atombios.c | |
parent | e29649db3bd5620499bf9bdcd63c5cf12edbd26e (diff) |
drm/radeon/kms/r600: fix rs880 support v2
Lots of cases were wrong or missing.
v2: rebased against drm-next
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/radeon_atombios.c')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_atombios.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c index 1c9a9c46176..050722492b4 100644 --- a/drivers/gpu/drm/radeon/radeon_atombios.c +++ b/drivers/gpu/drm/radeon/radeon_atombios.c @@ -277,7 +277,8 @@ bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) ATOM_DEVICE_CV_SUPPORT) continue; - if ((rdev->family == CHIP_RS780) && + /* IGP chips */ + if ((rdev->flags & RADEON_IS_IGP) && (con_obj_id == CONNECTOR_OBJECT_ID_PCIE_CONNECTOR)) { uint16_t igp_offset = 0; |