diff options
| author | Dave Airlie <airlied@redhat.com> | 2009-12-03 20:51:34 -0500 |
|---|---|---|
| committer | Dave Airlie <airlied@redhat.com> | 2009-12-03 20:56:28 -0500 |
| commit | aa1a750ecb3412f69fe34081b249aa978154f360 (patch) | |
| tree | e987b0578b1a10a9f0972056aff50847afa56481 | |
| parent | 0088dbdb809e8799cb8f26da5ac64b15201fa99d (diff) | |
drm/radeon/kms: quirk for Gigabyte RV515 card, DVI+VGA not 2xDVI.
Similiar to other quirks for RV515, this card has no second DVI port.
Signed-off-by: Dave Airlie <airlied@redhat.com>
| -rw-r--r-- | drivers/gpu/drm/radeon/radeon_atombios.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c index 0802b30879d9..5e414102c875 100644 --- a/drivers/gpu/drm/radeon/radeon_atombios.c +++ b/drivers/gpu/drm/radeon/radeon_atombios.c | |||
| @@ -143,6 +143,15 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev, | |||
| 143 | return false; | 143 | return false; |
| 144 | } | 144 | } |
| 145 | 145 | ||
| 146 | /* Gigabyte X1300 is DVI+VGA, not DVI+DVI */ | ||
| 147 | if ((dev->pdev->device == 0x7142) && | ||
| 148 | (dev->pdev->subsystem_vendor == 0x1458) && | ||
| 149 | (dev->pdev->subsystem_device == 0x2134)) { | ||
| 150 | if (supported_device == ATOM_DEVICE_DFP1_SUPPORT) | ||
| 151 | return false; | ||
| 152 | } | ||
| 153 | |||
| 154 | |||
| 146 | /* Funky macbooks */ | 155 | /* Funky macbooks */ |
| 147 | if ((dev->pdev->device == 0x71C5) && | 156 | if ((dev->pdev->device == 0x71C5) && |
| 148 | (dev->pdev->subsystem_vendor == 0x106b) && | 157 | (dev->pdev->subsystem_vendor == 0x106b) && |
