mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 15:12:59 +02:00
drm/radeon/kms: add quirk for ASUS HD 3600 board
commit e153b70b89 upstream.
Connector is actually DVI rather than HDMI.
Reported-by: trapDoor <trapdoor6@gmail.com>
Signed-off-by: Alex Deucher <alexdeucher@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
bb06a0c4d8
commit
dc7b233636
|
|
@ -161,6 +161,15 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev,
|
|||
}
|
||||
}
|
||||
|
||||
/* ASUS HD 3600 board lists the DVI port as HDMI */
|
||||
if ((dev->pdev->device == 0x9598) &&
|
||||
(dev->pdev->subsystem_vendor == 0x1043) &&
|
||||
(dev->pdev->subsystem_device == 0x01e4)) {
|
||||
if (*connector_type == DRM_MODE_CONNECTOR_HDMIA) {
|
||||
*connector_type = DRM_MODE_CONNECTOR_DVII;
|
||||
}
|
||||
}
|
||||
|
||||
/* ASUS HD 3450 board lists the DVI port as HDMI */
|
||||
if ((dev->pdev->device == 0x95C5) &&
|
||||
(dev->pdev->subsystem_vendor == 0x1043) &&
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user