summaryrefslogtreecommitdiff
path: root/include/pci_ids/pci_id_driver_map.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2013-06-04 18:41:53 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-06-06 14:28:35 -0700
commitea92b700df602be2ce08dd42052ff38f36148948 (patch)
tree481ecdeed5d7ce71b3fd5e23331e7ce5c6784983 /include/pci_ids/pci_id_driver_map.h
parent8bc788ea9e73ef4c355dfea80ac5070c6f81ac1c (diff)
intel: Remove 'misc' parameter from CHIPSET macro in PCI ID tables.
This has never actually been used for anything. Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'include/pci_ids/pci_id_driver_map.h')
-rw-r--r--include/pci_ids/pci_id_driver_map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/pci_ids/pci_id_driver_map.h b/include/pci_ids/pci_id_driver_map.h
index fce38af0fe0..41bb628f4c6 100644
--- a/include/pci_ids/pci_id_driver_map.h
+++ b/include/pci_ids/pci_id_driver_map.h
@@ -8,13 +8,13 @@
#endif
static const int i915_chip_ids[] = {
-#define CHIPSET(chip, desc, misc) chip,
+#define CHIPSET(chip, desc) chip,
#include "pci_ids/i915_pci_ids.h"
#undef CHIPSET
};
static const int i965_chip_ids[] = {
-#define CHIPSET(chip, desc, misc) chip,
+#define CHIPSET(chip, desc) chip,
#include "pci_ids/i965_pci_ids.h"
#undef CHIPSET
};