diff options
author | Marek Olšák <[email protected]> | 2018-08-02 22:21:02 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-08-14 21:20:31 -0400 |
commit | 84652721b987d892d743e3847b26b075fd3fa916 (patch) | |
tree | a48797f56ba54e17fb8141d55a08f4121094603e /src/amd/common/ac_gpu_info.c | |
parent | de8d5edbc4805493bd9e4c031fc0a30b6579bf58 (diff) |
ac: add radeon_info::name
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/amd/common/ac_gpu_info.c')
-rw-r--r-- | src/amd/common/ac_gpu_info.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c index 40441ec0c67..8705d878f9a 100644 --- a/src/amd/common/ac_gpu_info.c +++ b/src/amd/common/ac_gpu_info.c @@ -301,7 +301,11 @@ bool ac_query_gpu_info(int fd, amdgpu_device_handle dev, info->vce_harvest_config = amdinfo->vce_harvest_config; switch (info->pci_id) { -#define CHIPSET(pci_id, cfamily) case pci_id: info->family = CHIP_##cfamily; break; +#define CHIPSET(pci_id, cfamily) \ + case pci_id: \ + info->family = CHIP_##cfamily; \ + info->name = #cfamily; \ + break; #include "pci_ids/radeonsi_pci_ids.h" #undef CHIPSET |