aboutsummaryrefslogtreecommitdiffstats
path: root/src/amd
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2017-11-07 15:27:43 +0100
committerMarek Olšák <[email protected]>2017-11-07 17:26:36 +0100
commit24e90047088599e686b636fde9bda3a96f34a35c (patch)
treedaba52bb59736e62949bcc319cc542a50613d297 /src/amd
parentcf47dfe8f18e5398dc55ead6c1495c14c3dec938 (diff)
radeonsi: remove unused field in the PCI ID table
Reviewed-by: Alex Deucher <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r--src/amd/common/ac_gpu_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c
index 2e560125508..6c4630f0444 100644
--- a/src/amd/common/ac_gpu_info.c
+++ b/src/amd/common/ac_gpu_info.c
@@ -223,7 +223,7 @@ 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, name, cfamily) case pci_id: info->family = CHIP_##cfamily; break;
+#define CHIPSET(pci_id, cfamily) case pci_id: info->family = CHIP_##cfamily; break;
#include "pci_ids/radeonsi_pci_ids.h"
#undef CHIPSET