diff options
Diffstat (limited to 'lib/intel_chipset.h')
-rw-r--r-- | lib/intel_chipset.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h index 1396f105..e27b9aab 100644 --- a/lib/intel_chipset.h +++ b/lib/intel_chipset.h @@ -40,6 +40,7 @@ struct intel_device_info { unsigned graphics_ver; unsigned display_ver; unsigned gt; /* 0 if unknown */ + bool has_flatccs; bool is_mobile : 1; bool is_whitney : 1; bool is_almador : 1; @@ -215,4 +216,6 @@ void intel_check_pch(void); IS_CHERRYVIEW(devid) || \ IS_BROXTON(devid))) +#define HAS_FLATCCS(devid) (intel_get_device_info(devid)->has_flatccs) + #endif /* _INTEL_CHIPSET_H */ |