diff options
author | Chih-Wei Huang <cwhuang@linux.org.tw> | 2015-01-22 10:48:03 +0800 |
---|---|---|
committer | Chih-Wei Huang <cwhuang@linux.org.tw> | 2015-01-22 10:48:03 +0800 |
commit | d71e7963c186d6c83b5c11028bf1261bab65fa54 (patch) | |
tree | bba765ed91a11a33036611de76cda05de6dcb40a | |
parent | 1d8f169759171dcced5d9f71f9ae2f5bd1dcfdcc (diff) | |
download | external_drm_gralloc-d71e7963c186d6c83b5c11028bf1261bab65fa54.zip external_drm_gralloc-d71e7963c186d6c83b5c11028bf1261bab65fa54.tar.gz external_drm_gralloc-d71e7963c186d6c83b5c11028bf1261bab65fa54.tar.bz2 |
add radeonsi to pci_id_driver_map.h
-rw-r--r-- | pci_ids/pci_id_driver_map.h | 7 |
1 files changed, 7 insertions, 0 deletions
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 }, |