summaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-10-05 22:30:51 +0100
committerEric Engestrom <[email protected]>2019-10-28 23:21:39 +0000
commitcd04b63c0007e5fc7a9a1deb2de58091942cb2fc (patch)
tree4e20acc39330ec826e32e0bdde270f6b8593a55f /src/gallium
parentea8116908ce7ecb610f68d1333352258c2bfc00a (diff)
loader: default to iris for all future PCI IDs
The existing "fallback" code didn't actually do anything, so this removes it, and instead we just always fallback to `iris` for future PCI IDs. Suggested-by: Kenneth Graunke <[email protected]> Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/iris/iris_screen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/iris/iris_screen.c b/src/gallium/drivers/iris/iris_screen.c
index 63159405a16..f540d387f8b 100644
--- a/src/gallium/drivers/iris/iris_screen.c
+++ b/src/gallium/drivers/iris/iris_screen.c
@@ -86,6 +86,7 @@ iris_get_name(struct pipe_screen *pscreen)
#undef CHIPSET
#define CHIPSET(id, symbol, str) case id: chipset = str; break;
#include "pci_ids/i965_pci_ids.h"
+#include "pci_ids/iris_pci_ids.h"
default:
chipset = "Unknown Intel Chipset";
break;