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 4b9a37d commit de6e195Copy full SHA for de6e195
drivers/gpu/drm/radeon/radeon_irq_kms.c
@@ -204,6 +204,12 @@ static bool radeon_msi_ok(struct radeon_device *rdev)
204
(rdev->pdev->subsystem_device == 0x01fd))
205
return true;
206
207
+ /* Gateway RS690 only seems to work with MSIs. */
208
+ if ((rdev->pdev->device == 0x791f) &&
209
+ (rdev->pdev->subsystem_vendor == 0x107b) &&
210
+ (rdev->pdev->subsystem_device == 0x0185))
211
+ return true;
212
+
213
/* RV515 seems to have MSI issues where it loses
214
* MSI rearms occasionally. This leads to lockups and freezes.
215
* disable it by default.
0 commit comments