D | i915_drv.h | 1311 #define IS_GRAPHICS_VER(i915, from, until) \ argument 1312 (GRAPHICS_VER(i915) >= (from) && GRAPHICS_VER(i915) <= (until)) 1317 #define IS_MEDIA_VER(i915, from, until) \ argument 1318 (MEDIA_VER(i915) >= (from) && MEDIA_VER(i915) <= (until)) 1321 #define IS_DISPLAY_VER(i915, from, until) \ argument 1322 (DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until)) 1331 #define IS_DISPLAY_STEP(__i915, since, until) \ argument 1333 INTEL_DISPLAY_STEP(__i915) >= (since) && INTEL_DISPLAY_STEP(__i915) < (until)) 1335 #define IS_GT_STEP(__i915, since, until) \ argument 1337 INTEL_GT_STEP(__i915) >= (since) && INTEL_GT_STEP(__i915) < (until)) [all …]
|