summaryrefslogtreecommitdiff
path: root/lib/intel_chipset.h
diff options
context:
space:
mode:
authorPaulo Zanoni <paulo.r.zanoni@intel.com>2013-03-01 17:32:34 -0300
committerPaulo Zanoni <paulo.r.zanoni@intel.com>2013-03-22 14:45:06 -0300
commit1043b22bb02ddb37e3abbcc2108c6ebe03eeb9f0 (patch)
tree77d3bd36ae34a40e34044caef6b86e36753b1903 /lib/intel_chipset.h
parent051e327247dbfeb4671fd5ece48e64aa52b7b835 (diff)
lib: fix HAS_PCH_SPLIT check
So HAS_PCH_SPLIT on't be true on VLV. Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Diffstat (limited to 'lib/intel_chipset.h')
-rwxr-xr-xlib/intel_chipset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index 6ef02823..e027b321 100755
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -261,7 +261,7 @@
#define HAS_PCH_SPLIT(devid) (IS_GEN5(devid) || \
IS_GEN6(devid) || \
- IS_GEN7(devid))
+ IS_IVYBRIDGE(devid) || IS_HASWELL(devid))
#define HAS_BLT_RING(devid) (IS_GEN6(devid) || \
IS_GEN7(devid))