diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-05-12 22:17:21 +0100 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-06-04 10:41:18 -0700 |
commit | 4bce2da393dbbc6650a1d62683ef60e03594b4c7 (patch) | |
tree | 35c21bb0896d005fbaf7ec232cd2cf8337a6ab13 /drivers/gpu/drm/i915 | |
parent | c8ebc2b076ad9e1833cb4f7f1a6f30b4786a2a09 (diff) | |
download | op-kernel-dev-4bce2da393dbbc6650a1d62683ef60e03594b4c7.zip op-kernel-dev-4bce2da393dbbc6650a1d62683ef60e03594b4c7.tar.gz |
drm/i915: Remove unused enum "chip_family"
Superseded by the tracking the render generation in the chipset
capabiltiies struct.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'drivers/gpu/drm/i915')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index ee66035..71bd6f5 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -909,13 +909,6 @@ struct drm_i915_file_private { } mm; }; -enum intel_chip_family { - CHIP_I8XX = 0x01, - CHIP_I9XX = 0x02, - CHIP_I915 = 0x04, - CHIP_I965 = 0x08, -}; - #define INTEL_INFO(dev) (((struct drm_i915_private *) (dev)->dev_private)->info) #define IS_I830(dev) ((dev)->pci_device == 0x3577) |