|
|
877270 |
From efb4bc5b3da511d128144840d7eb3cf3c7cfa0ae Mon Sep 17 00:00:00 2001
|
|
|
877270 |
From: Adam Jackson <ajax@redhat.com>
|
|
|
877270 |
Date: Tue, 3 Sep 2019 12:10:37 -0400
|
|
|
877270 |
Subject: [PATCH] mustard: Add DRI2 fallback driver mappings for i965 and
|
|
|
877270 |
radeonsi
|
|
|
877270 |
|
|
|
877270 |
---
|
|
|
877270 |
hw/xfree86/dri2/pci_ids/pci_id_driver_map.h | 2 ++
|
|
|
877270 |
1 file changed, 2 insertions(+)
|
|
|
877270 |
|
|
|
877270 |
diff --git a/hw/xfree86/dri2/pci_ids/pci_id_driver_map.h b/hw/xfree86/dri2/pci_ids/pci_id_driver_map.h
|
|
|
877270 |
index 689a570..3825f52 100644
|
|
|
877270 |
--- a/hw/xfree86/dri2/pci_ids/pci_id_driver_map.h
|
|
|
877270 |
+++ b/hw/xfree86/dri2/pci_ids/pci_id_driver_map.h
|
|
|
877270 |
@@ -45,8 +45,10 @@ static const struct {
|
|
|
877270 |
int num_chips_ids;
|
|
|
877270 |
} driver_map[] = {
|
|
|
877270 |
{ 0x8086, "i965", "va_gl", i965_chip_ids, ARRAY_SIZE(i965_chip_ids) },
|
|
|
877270 |
+ { 0x8086, "i965", "va_gl", NULL, -1 },
|
|
|
877270 |
{ 0x1002, "r600","r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) },
|
|
|
877270 |
{ 0x1002, "radeonsi", "radeonsi", radeonsi_chip_ids, ARRAY_SIZE(radeonsi_chip_ids) },
|
|
|
877270 |
+ { 0x1002, "radeonsi", "radeonsi", NULL, -1 },
|
|
|
877270 |
{ 0x10de, "nouveau", "nouveau", NULL, -1 },
|
|
|
877270 |
{ 0x1af4, "virtio_gpu", "virtio_gpu", virtio_gpu_chip_ids, ARRAY_SIZE(virtio_gpu_chip_ids) },
|
|
|
877270 |
{ 0x15ad, "vmwgfx", "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) },
|
|
|
877270 |
--
|
|
|
877270 |
2.23.0
|
|
|
877270 |
|