diff options
author | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2013-03-01 17:32:34 -0300 |
---|---|---|
committer | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2013-03-22 14:45:06 -0300 |
commit | 1043b22bb02ddb37e3abbcc2108c6ebe03eeb9f0 (patch) | |
tree | 77d3bd36ae34a40e34044caef6b86e36753b1903 | |
parent | 051e327247dbfeb4671fd5ece48e64aa52b7b835 (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>
-rwxr-xr-x | lib/intel_chipset.h | 2 |
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)) |