Commit e31fe02e authored by Mika Kuoppala's avatar Mika Kuoppala Committed by Chris Wilson

drm/i915: Make intel_timeline_init static

Commit fb5970da ("drm/i915/gt: Use the kernel_context to measure the
breadcrumb size") removed the last external user for intel_timeline_init.
Mark it static.
Signed-off-by: default avatarMika Kuoppala <mika.kuoppala@linux.intel.com>
Reviewed-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Link: https://patchwork.freedesktop.org/patch/msgid/20200511102201.9275-1-mika.kuoppala@linux.intel.com
parent f4d49692
...@@ -211,9 +211,9 @@ static void cacheline_free(struct intel_timeline_cacheline *cl) ...@@ -211,9 +211,9 @@ static void cacheline_free(struct intel_timeline_cacheline *cl)
i915_active_release(&cl->active); i915_active_release(&cl->active);
} }
int intel_timeline_init(struct intel_timeline *timeline, static int intel_timeline_init(struct intel_timeline *timeline,
struct intel_gt *gt, struct intel_gt *gt,
struct i915_vma *hwsp) struct i915_vma *hwsp)
{ {
void *vaddr; void *vaddr;
...@@ -280,7 +280,7 @@ void intel_gt_init_timelines(struct intel_gt *gt) ...@@ -280,7 +280,7 @@ void intel_gt_init_timelines(struct intel_gt *gt)
INIT_LIST_HEAD(&timelines->hwsp_free_list); INIT_LIST_HEAD(&timelines->hwsp_free_list);
} }
void intel_timeline_fini(struct intel_timeline *timeline) static void intel_timeline_fini(struct intel_timeline *timeline)
{ {
GEM_BUG_ON(atomic_read(&timeline->pin_count)); GEM_BUG_ON(atomic_read(&timeline->pin_count));
GEM_BUG_ON(!list_empty(&timeline->requests)); GEM_BUG_ON(!list_empty(&timeline->requests));
......
...@@ -31,11 +31,6 @@ ...@@ -31,11 +31,6 @@
#include "i915_syncmap.h" #include "i915_syncmap.h"
#include "gt/intel_timeline_types.h" #include "gt/intel_timeline_types.h"
int intel_timeline_init(struct intel_timeline *tl,
struct intel_gt *gt,
struct i915_vma *hwsp);
void intel_timeline_fini(struct intel_timeline *tl);
struct intel_timeline * struct intel_timeline *
intel_timeline_create(struct intel_gt *gt, struct i915_vma *global_hwsp); intel_timeline_create(struct intel_gt *gt, struct i915_vma *global_hwsp);
......
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