summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i915
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2015-03-05 10:24:57 -0800
committerIan Romanick <ian.d.romanick@intel.com>2015-03-09 14:08:49 -0700
commit6d41316b79cf6d67bcbd155dfb6556e2977080d5 (patch)
tree78536a364031e9d9f6b066ad0133066b598b8aa3 /src/mesa/drivers/dri/i915
parente7d94be1ec9c87063a21731a982ae4677cd43bdf (diff)
downloadexternal_mesa3d-6d41316b79cf6d67bcbd155dfb6556e2977080d5.zip
external_mesa3d-6d41316b79cf6d67bcbd155dfb6556e2977080d5.tar.gz
external_mesa3d-6d41316b79cf6d67bcbd155dfb6556e2977080d5.tar.bz2
i915: Remove unused IS_MOBILE macro
Inspired by Damien's recent libdrm changes. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Damien Lespiau <damien.lespiau@intel.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'src/mesa/drivers/dri/i915')
-rw-r--r--src/mesa/drivers/dri/i915/intel_chipset.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/drivers/dri/i915/intel_chipset.h b/src/mesa/drivers/dri/i915/intel_chipset.h
index 3828085..d05fd08 100644
--- a/src/mesa/drivers/dri/i915/intel_chipset.h
+++ b/src/mesa/drivers/dri/i915/intel_chipset.h
@@ -53,16 +53,6 @@
#define IS_PNVG(devid) (devid == PCI_CHIP_PNV_G)
#define IS_PNV(devid) (IS_PNVG(devid) || IS_PNVGM(devid))
-#define IS_MOBILE(devid) (devid == PCI_CHIP_I855_GM || \
- devid == PCI_CHIP_I915_GM || \
- devid == PCI_CHIP_I945_GM || \
- devid == PCI_CHIP_I945_GME || \
- devid == PCI_CHIP_I965_GM || \
- devid == PCI_CHIP_I965_GME || \
- devid == PCI_CHIP_GM45_GM || \
- IS_PNV(devid) || \
- devid == PCI_CHIP_ILM_G)
-
#define IS_915(devid) (devid == PCI_CHIP_I915_G || \
devid == PCI_CHIP_E7221_G || \
devid == PCI_CHIP_I915_GM)