diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2013-07-04 11:55:36 -0700 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2013-10-13 00:10:43 -0700 |
commit | 8d4ecbccd6a5608005b5c8f473d9a44dbde0b08d (patch) | |
tree | b325c4b196ba5629f05e654a68172d1417357c46 /include/pci_ids/pci_id_driver_map.h | |
parent | 90511faedddff834ab1f6d92f4d5d25a3c32bd82 (diff) |
i965: Remove #define name from PCI ID table.
Nothing uses the #define name, and it's not terribly useful - the
numerical ID serves the same purpose. The only thing we could really do
with it is generate slightly prettier preprocessed code. But who looks
at that?
Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'include/pci_ids/pci_id_driver_map.h')
-rw-r--r-- | include/pci_ids/pci_id_driver_map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pci_ids/pci_id_driver_map.h b/include/pci_ids/pci_id_driver_map.h index 1d1f3c38bcd..e494a6dcdb5 100644 --- a/include/pci_ids/pci_id_driver_map.h +++ b/include/pci_ids/pci_id_driver_map.h @@ -14,7 +14,7 @@ static const int i915_chip_ids[] = { }; static const int i965_chip_ids[] = { -#define CHIPSET(chip, desc, name) chip, +#define CHIPSET(chip, name) chip, #include "pci_ids/i965_pci_ids.h" #undef CHIPSET }; |