diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h index adc92338..f75667b5 100644 --- a/lib/intel_chipset.h +++ b/lib/intel_chipset.h @@ -301,6 +301,12 @@ IS_GEN6(devid) || \ IS_GEN7(devid)) +#define IS_9XX(devid) (IS_GEN3(devid) || \ + IS_GEN4(devid) || \ + IS_GEN5(devid) || \ + IS_GEN6(devid) || \ + IS_GEN7(devid)) + #define IS_INTEL(devid) (IS_GEN2(devid) || \ IS_GEN3(devid) || \ IS_GEN4(devid) || \