diff options
author | Ian Romanick <ian.d.romanick@intel.com> | 2011-08-24 15:21:58 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2011-08-26 23:31:22 -0700 |
commit | e4344161bde2e24fcfba65d30d58f087bd8bf94d (patch) | |
tree | 0909a7ecd6418db9249572b5d3b55a6b35549123 /include | |
parent | 117042b46fc174107a6e28babb9353f9f1e5b981 (diff) |
dri: Remove all DRI1 drivers
Acked-by: Kristian Høgsberg <krh@bitplanet.net>
Acked-by: Marek Olšák <maraeo@gmail.com>
Acked-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Acked-by: Jakob Bornecrantz <jakob@vmware.com>
Acked-by: Dave Airlie <airlied@redhat.com>
Build-Tested-by: Jakob Bornecrantz <jakob@vmware.com>
Tested-by: Eugeni Dodonov <eugeni.dodonov@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/pci_ids/pci_id_driver_map.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/pci_ids/pci_id_driver_map.h b/include/pci_ids/pci_id_driver_map.h index 9112efd378..54b56d5f99 100644 --- a/include/pci_ids/pci_id_driver_map.h +++ b/include/pci_ids/pci_id_driver_map.h @@ -7,14 +7,6 @@ #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) #endif -#if !defined(DRIVER_MAP_DRI2_ONLY) && !defined(DRIVER_MAP_GALLIUM_ONLY) -static const int i810_chip_ids[] = { -#define CHIPSET(chip, desc, misc) chip, -#include "pci_ids/i810_pci_ids.h" -#undef CHIPSET -}; -#endif - static const int i915_chip_ids[] = { #define CHIPSET(chip, desc, misc) chip, #include "pci_ids/i915_pci_ids.h" @@ -59,9 +51,6 @@ static const struct { const int *chip_ids; int num_chips_ids; } driver_map[] = { -#if !defined(DRIVER_MAP_DRI2_ONLY) && !defined(DRIVER_MAP_GALLIUM_ONLY) - { 0x8086, "i810", i810_chip_ids, ARRAY_SIZE(i810_chip_ids) }, -#endif { 0x8086, "i915", i915_chip_ids, ARRAY_SIZE(i915_chip_ids) }, { 0x8086, "i965", i965_chip_ids, ARRAY_SIZE(i965_chip_ids) }, #ifndef DRIVER_MAP_GALLIUM_ONLY |