Skip to content

Commit

Permalink
drm/radeon/kms: quirk for Gigabyte RV515 card, DVI+VGA not 2xDVI.
Browse files Browse the repository at this point in the history
Similiar to other quirks for RV515, this card has no second DVI port.

Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Dave Airlie committed Dec 4, 2009
1 parent 0088dbd commit aa1a750
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions drivers/gpu/drm/radeon/radeon_atombios.c
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,15 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev,
return false;
}

/* Gigabyte X1300 is DVI+VGA, not DVI+DVI */
if ((dev->pdev->device == 0x7142) &&
(dev->pdev->subsystem_vendor == 0x1458) &&
(dev->pdev->subsystem_device == 0x2134)) {
if (supported_device == ATOM_DEVICE_DFP1_SUPPORT)
return false;
}


/* Funky macbooks */
if ((dev->pdev->device == 0x71C5) &&
(dev->pdev->subsystem_vendor == 0x106b) &&
Expand Down

0 comments on commit aa1a750

Please sign in to comment.