Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 183c9906 authored by Damien Lespiau's avatar Damien Lespiau Committed by Daniel Vetter
Browse files

drm/i915: Make intel_logical_ring_advance_and_submit() static



This function is only used in intel_lrc.c, so restrict it to that file. The
function was moved around to avoid a forward declaration and group it with its
user.

Signed-off-by: default avatarDamien Lespiau <damien.lespiau@intel.com>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent cef437ad
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -785,7 +785,7 @@ int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf,
	return 0;
}

/**
/*
 * intel_logical_ring_advance_and_submit() - advance the tail and submit the workload
 * @ringbuf: Logical Ringbuffer to advance.
 *
@@ -794,7 +794,8 @@ int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf,
 * on a queue waiting for the ELSP to be ready to accept a new context submission. At that
 * point, the tail *inside* the context is updated and the ELSP written to.
 */
void intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf,
static void
intel_logical_ring_advance_and_submit(struct intel_ringbuffer *ringbuf,
				      struct intel_context *ctx,
				      struct drm_i915_gem_request *request)
{
+0 −4
Original line number Diff line number Diff line
@@ -42,10 +42,6 @@ int intel_logical_rings_init(struct drm_device *dev);

int logical_ring_flush_all_caches(struct intel_ringbuffer *ringbuf,
				  struct intel_context *ctx);
void intel_logical_ring_advance_and_submit(
				struct intel_ringbuffer *ringbuf,
				struct intel_context *ctx,
				struct drm_i915_gem_request *request);
/**
 * intel_logical_ring_advance() - advance the ringbuffer tail
 * @ringbuf: Ringbuffer to advance.