summaryrefslogtreecommitdiff
path: root/include/pci_ids/pci_id_driver_map.h
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2011-08-24 13:48:25 +0800
committerChia-I Wu <olvaffe@gmail.com>2011-08-27 17:28:30 +0800
commitd074acb4fa34712c49dd5b122bb074108cf5926b (patch)
treee7220b5bc79b94dc325cb5b948cb9955552d9cd6 /include/pci_ids/pci_id_driver_map.h
parent3a1ed4eaf20a350a16f18cd20140ed4182a487c3 (diff)
pci_ids: add vmwgfx pci id list
There is only one chipset 15ad:0405 VMware SVGA II Adapter
Diffstat (limited to 'include/pci_ids/pci_id_driver_map.h')
-rw-r--r--include/pci_ids/pci_id_driver_map.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/pci_ids/pci_id_driver_map.h b/include/pci_ids/pci_id_driver_map.h
index 54b56d5f991..232359f6e0d 100644
--- a/include/pci_ids/pci_id_driver_map.h
+++ b/include/pci_ids/pci_id_driver_map.h
@@ -45,6 +45,12 @@ static const int r600_chip_ids[] = {
#undef CHIPSET
};
+static const int vmwgfx_chip_ids[] = {
+#define CHIPSET(chip, name, family) chip,
+#include "pci_ids/vmwgfx_pci_ids.h"
+#undef CHIPSET
+};
+
static const struct {
int vendor_id;
const char *driver;
@@ -60,6 +66,7 @@ static const struct {
{ 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) },
{ 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) },
{ 0x10de, "nouveau", NULL, -1 },
+ { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) },
{ 0x0000, NULL, NULL, 0 },
};