We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61051af commit 3a6d59dCopy full SHA for 3a6d59d
drivers/gpu/drm/radeon/radeon_irq_kms.c
@@ -202,6 +202,12 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
202
(rdev->pdev->subsystem_device == 0x01fd))
203
return true;
204
205
+ /* Gateway RS690 only seems to work with MSIs. */
206
+ if ((rdev->pdev->device == 0x791f) &&
207
+ (rdev->pdev->subsystem_vendor == 0x107b) &&
208
+ (rdev->pdev->subsystem_device == 0x0185))
209
+ return true;
210
+
211
/* RV515 seems to have MSI issues where it loses
212
* MSI rearms occasionally. This leads to lockups and freezes.
213
* disable it by default.
0 commit comments