mirror of
https://github.com/torvalds/linux.git
synced 2026-06-10 07:32:29 +02:00
drm/radeon: Add MSI quirk for gateway RS690
commit 3a6d59df80 upstream.
Fixes another system on:
https://bugs.freedesktop.org/show_bug.cgi?id=37679
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
47c3ae0b3b
commit
60a601fda7
|
|
@ -147,6 +147,12 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
|
|||
(rdev->pdev->subsystem_device == 0x01fd))
|
||||
return true;
|
||||
|
||||
/* Gateway RS690 only seems to work with MSIs. */
|
||||
if ((rdev->pdev->device == 0x791f) &&
|
||||
(rdev->pdev->subsystem_vendor == 0x107b) &&
|
||||
(rdev->pdev->subsystem_device == 0x0185))
|
||||
return true;
|
||||
|
||||
/* RV515 seems to have MSI issues where it loses
|
||||
* MSI rearms occasionally. This leads to lockups and freezes.
|
||||
* disable it by default.
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user