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>
This commit is contained in:
Imre Deak 2015-03-31 20:32:30 +03:00
parent 1dc4884875
commit f0cbfb64df

View File

@ -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) || \