D | i915_drv.h | 430 #define IS_GRAPHICS_VER(i915, from, until) \ argument 431 (GRAPHICS_VER(i915) >= (from) && GRAPHICS_VER(i915) <= (until)) 436 #define IS_MEDIA_VER(i915, from, until) \ argument 437 (MEDIA_VER(i915) >= (from) && MEDIA_VER(i915) <= (until)) 440 #define IS_DISPLAY_VER(i915, from, until) \ argument 441 (DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until)) 450 #define IS_DISPLAY_STEP(__i915, since, until) \ argument 452 INTEL_DISPLAY_STEP(__i915) >= (since) && INTEL_DISPLAY_STEP(__i915) < (until)) 454 #define IS_GRAPHICS_STEP(__i915, since, until) \ argument 456 INTEL_GRAPHICS_STEP(__i915) >= (since) && INTEL_GRAPHICS_STEP(__i915) < (until)) [all …]
|