Commit 5dc383b0 authored by Daniel Vetter's avatar Daniel Vetter

drm/i915: Add proper prefix to obj_to_ggtt

Stuff in headers really aught to have this.
Reviewed-by: default avatarMichel Thierry <michel.thierry@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 841cd773
...@@ -2503,7 +2503,7 @@ static inline bool i915_gem_obj_is_pinned(struct drm_i915_gem_object *obj) { ...@@ -2503,7 +2503,7 @@ static inline bool i915_gem_obj_is_pinned(struct drm_i915_gem_object *obj) {
} }
/* Some GGTT VM helpers */ /* Some GGTT VM helpers */
#define obj_to_ggtt(obj) \ #define i915_obj_to_ggtt(obj) \
(&((struct drm_i915_private *)(obj)->base.dev->dev_private)->gtt.base) (&((struct drm_i915_private *)(obj)->base.dev->dev_private)->gtt.base)
static inline bool i915_is_ggtt(struct i915_address_space *vm) static inline bool i915_is_ggtt(struct i915_address_space *vm)
{ {
...@@ -2523,19 +2523,19 @@ i915_vm_to_ppgtt(struct i915_address_space *vm) ...@@ -2523,19 +2523,19 @@ i915_vm_to_ppgtt(struct i915_address_space *vm)
static inline bool i915_gem_obj_ggtt_bound(struct drm_i915_gem_object *obj) static inline bool i915_gem_obj_ggtt_bound(struct drm_i915_gem_object *obj)
{ {
return i915_gem_obj_bound(obj, obj_to_ggtt(obj)); return i915_gem_obj_bound(obj, i915_obj_to_ggtt(obj));
} }
static inline unsigned long static inline unsigned long
i915_gem_obj_ggtt_offset(struct drm_i915_gem_object *obj) i915_gem_obj_ggtt_offset(struct drm_i915_gem_object *obj)
{ {
return i915_gem_obj_offset(obj, obj_to_ggtt(obj)); return i915_gem_obj_offset(obj, i915_obj_to_ggtt(obj));
} }
static inline unsigned long static inline unsigned long
i915_gem_obj_ggtt_size(struct drm_i915_gem_object *obj) i915_gem_obj_ggtt_size(struct drm_i915_gem_object *obj)
{ {
return i915_gem_obj_size(obj, obj_to_ggtt(obj)); return i915_gem_obj_size(obj, i915_obj_to_ggtt(obj));
} }
static inline int __must_check static inline int __must_check
...@@ -2543,7 +2543,8 @@ i915_gem_obj_ggtt_pin(struct drm_i915_gem_object *obj, ...@@ -2543,7 +2543,8 @@ i915_gem_obj_ggtt_pin(struct drm_i915_gem_object *obj,
uint32_t alignment, uint32_t alignment,
unsigned flags) unsigned flags)
{ {
return i915_gem_object_pin(obj, obj_to_ggtt(obj), alignment, flags | PIN_GLOBAL); return i915_gem_object_pin(obj, i915_obj_to_ggtt(obj),
alignment, flags | PIN_GLOBAL);
} }
static inline int static inline int
......
...@@ -5252,7 +5252,7 @@ struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj) ...@@ -5252,7 +5252,7 @@ struct i915_vma *i915_gem_obj_to_ggtt(struct drm_i915_gem_object *obj)
struct i915_vma *vma; struct i915_vma *vma;
vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link); vma = list_first_entry(&obj->vma_list, typeof(*vma), vma_link);
if (vma->vm != obj_to_ggtt(obj)) if (vma->vm != i915_obj_to_ggtt(obj))
return NULL; return NULL;
return vma; return vma;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment