diff options
author | Paulo Zanoni <paulo.r.zanoni@intel.com> | 2017-04-27 17:11:09 -0300 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2017-06-30 08:30:48 -0700 |
commit | 3095cc8eaba1aa87ad38c04ae2b1eabe30f7e16c (patch) | |
tree | fab71ef6c7f343d72a451f038881f1d925560c1b /intel | |
parent | 5c490bd6854a5b265aaa62ef62926c3ac97092c7 (diff) |
intel: add GEN10 to IS_9XX.
As far as I understand, IS_9XX should return true for it.
Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'intel')
-rw-r--r-- | intel/intel_chipset.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h index 37579c64..770d21f0 100644 --- a/intel/intel_chipset.h +++ b/intel/intel_chipset.h @@ -505,7 +505,8 @@ IS_GEN6(dev) || \ IS_GEN7(dev) || \ IS_GEN8(dev) || \ - IS_GEN9(dev)) + IS_GEN9(dev) || \ + IS_GEN10(dev)) #define IS_CNL_Y(devid) ((devid) == PCI_CHIP_CANNONLAKE_Y_GT2_0 || \ (devid) == PCI_CHIP_CANNONLAKE_Y_GT2_1 || \ |