D | i915_drv.h | 473 #define IS_GRAPHICS_VER(i915, from, until) \ argument 474 (GRAPHICS_VER(i915) >= (from) && GRAPHICS_VER(i915) <= (until)) 479 #define IS_MEDIA_VER(i915, from, until) \ argument 480 (MEDIA_VER(i915) >= (from) && MEDIA_VER(i915) <= (until)) 483 #define IS_DISPLAY_VER(i915, from, until) \ argument 484 (DISPLAY_VER(i915) >= (from) && DISPLAY_VER(i915) <= (until)) 495 #define IS_DISPLAY_STEP(__i915, since, until) \ argument 497 INTEL_DISPLAY_STEP(__i915) >= (since) && INTEL_DISPLAY_STEP(__i915) < (until)) 499 #define IS_GRAPHICS_STEP(__i915, since, until) \ argument 501 INTEL_GRAPHICS_STEP(__i915) >= (since) && INTEL_GRAPHICS_STEP(__i915) < (until)) [all …]
|