[Intel-gfx] [PATCH 2/8] lib/intel_chipset: fix HAS_PCH_SPLIT on CHV
Imre Deak
imre.deak at intel.com
Tue Mar 31 10:32:30 PDT 2015
CherryView is GEN8 but doesn't have PCH so fix the macro accordingly.
Signed-off-by: Imre Deak <imre.deak at intel.com>
---
lib/intel_chipset.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
index bd1b9ed..bccbb8e 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) || \
--
2.1.0
More information about the Intel-gfx
mailing list