22 lines
795 B
Diff
22 lines
795 B
Diff
From 7b147dfef7a2ce8247710660d2b95d84100aaad7 Mon Sep 17 00:00:00 2001
|
|
From: SupervisedThinking <supervisedthinking@gmail.com>
|
|
Date: Tue, 19 Oct 2021 18:22:38 +0200
|
|
Subject: [PATCH] Detect GPUs as "radeon" instead "ati"
|
|
|
|
---
|
|
hw/xfree86/common/xf86pciBus.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/hw/xfree86/common/xf86pciBus.c b/hw/xfree86/common/xf86pciBus.c
|
|
index aeeed8be66..5c22bd4080 100644
|
|
--- a/hw/xfree86/common/xf86pciBus.c
|
|
+++ b/hw/xfree86/common/xf86pciBus.c
|
|
@@ -1106,7 +1106,7 @@ xf86VideoPtrToDriverList(struct pci_device *dev, XF86MatchedDrivers *md)
|
|
driverList[0] = "ast";
|
|
break;
|
|
case 0x1002:
|
|
- driverList[0] = "ati";
|
|
+ driverList[0] = "radeon";
|
|
break;
|
|
case 0x102c:
|
|
driverList[0] = "chips";
|