pci_ids: add vmwgfx pci id list

There is only one chipset

 15ad:0405 VMware SVGA II Adapter
This commit is contained in:
Chia-I Wu
2011-08-24 13:48:25 +08:00
committed by Chia-I Wu
parent 3a1ed4eaf2
commit d074acb4fa
2 changed files with 8 additions and 0 deletions

View File

@@ -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 },
};

View File

@@ -0,0 +1 @@
CHIPSET(0x0405, SVGAII, SVGAII)