From d71e7963c186d6c83b5c11028bf1261bab65fa54 Mon Sep 17 00:00:00 2001 From: Chih-Wei Huang Date: Thu, 22 Jan 2015 10:48:03 +0800 Subject: add radeonsi to pci_id_driver_map.h --- pci_ids/pci_id_driver_map.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pci_ids/pci_id_driver_map.h b/pci_ids/pci_id_driver_map.h index c3eec14..b89414a 100644 --- a/pci_ids/pci_id_driver_map.h +++ b/pci_ids/pci_id_driver_map.h @@ -53,6 +53,12 @@ static const int r600_chip_ids[] = { #undef CHIPSET }; +static const int radeonsi_chip_ids[] = { +#define CHIPSET(chip, name, family) chip, +#include "pci_ids/radeonsi_pci_ids.h" +#undef CHIPSET +}; + static const int vmwgfx_chip_ids[] = { #define CHIPSET(chip, name, family) chip, #include "pci_ids/vmwgfx_pci_ids.h" @@ -76,6 +82,7 @@ static const struct { #endif { 0x1002, "r300", r300_chip_ids, ARRAY_SIZE(r300_chip_ids) }, { 0x1002, "r600", r600_chip_ids, ARRAY_SIZE(r600_chip_ids) }, + { 0x1002, "radeonsi", radeonsi_chip_ids, ARRAY_SIZE(radeonsi_chip_ids) }, { 0x10de, "nouveau", NULL, -1 }, { 0x15ad, "vmwgfx", vmwgfx_chip_ids, ARRAY_SIZE(vmwgfx_chip_ids) }, { 0x0000, NULL, NULL, 0 }, -- cgit v1.1