Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

drm/i915: move GEM_QUIRK_PIN_SWIZZLED_PAGES to i915_gem.h

Move this macro where other GEM_* definitions live.
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>

Signed-off-by: Krzysztof Karas <krzysztof.karas@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://lore.kernel.org/all/ca83a9d8aa86bb92de84c31fd075e92a61f78895.1750251040.git.krzysztof.karas@intel.com

authored by

Krzysztof Karas and committed by
Andi Shyti
4afcdbbd dcf55829

+2 -2
-2
drivers/gpu/drm/i915/i915_drv.h
··· 66 66 struct vlv_s0ix_state; 67 67 struct intel_pxp; 68 68 69 - #define GEM_QUIRK_PIN_SWIZZLED_PAGES BIT(0) 70 - 71 69 /* Data Stolen Memory (DSM) aka "i915 stolen memory" */ 72 70 struct i915_dsm { 73 71 /*
+2
drivers/gpu/drm/i915/i915_gem.h
··· 134 134 135 135 #define I915_GEM_IDLE_TIMEOUT (HZ / 5) 136 136 137 + #define GEM_QUIRK_PIN_SWIZZLED_PAGES BIT(0) 138 + 137 139 #endif /* __I915_GEM_H__ */