summaryrefslogtreecommitdiff
path: root/lib/intel_chipset.h
diff options
context:
space:
mode:
authorImre Deak <imre.deak@intel.com>2015-03-31 20:32:30 +0300
committerImre Deak <imre.deak@intel.com>2015-04-08 14:52:36 +0300
commitf0cbfb64dfff5fd1d44cf2986f8f85656ee61882 (patch)
treea4d78583a35a295aa9b5e4640f1782dbc7bbb6ef /lib/intel_chipset.h
parent1dc4884875b1fa9f2e7ea82f26b6f361249426b8 (diff)
lib/intel_chipset: fix HAS_PCH_SPLIT on CHV
CherryView is GEN8 but doesn't have PCH so fix the macro accordingly. Signed-off-by: Imre Deak <imre.deak@intel.com>
Diffstat (limited to 'lib/intel_chipset.h')
-rw-r--r--lib/intel_chipset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index bd1b9ede..bccbb8e9 100644
--- a/lib/intel_chipset.h
+++ b/lib/intel_chipset.h
@@ -419,7 +419,7 @@ void intel_check_pch(void);
#define HAS_PCH_SPLIT(devid) (IS_GEN5(devid) || \
IS_GEN6(devid) || \
IS_IVYBRIDGE(devid) || IS_HASWELL(devid) || \
- IS_GEN8(devid) || \
+ IS_BROADWELL(devid) || \
IS_GEN9(devid))
#define HAS_BLT_RING(devid) (IS_GEN6(devid) || \