aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_gem_context.c
diff options
context:
space:
mode:
authorMika Kuoppala <mika.kuoppala@linux.intel.com>2013-06-12 05:35:30 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2013-06-13 11:42:15 -0400
commit0025c0772de7451c2302fa628f038b213a0783bf (patch)
tree09d28e60883994603cf7f4f52290ed1fb43c207b /drivers/gpu/drm/i915/i915_gem_context.c
parentc0bb617a70c94d660001f06f9810d53085e2c88d (diff)
drm/i915: change i915_add_request to macro
Only execbuffer needed all the parameters on i915_add_request(). By putting __i915_add_request behind macro, all current callsites become cleaner. Following patch will introduce a new parameter for __i915_add_request. With this patch, only the relevant callsite will reflect the change making commit smaller and easier to understand. v2: _i915_add_request as function name (Chris Wilson) v3: change name __i915_add_request and fix ordering of params (Ben Widawsky) Signed-off-by: Mika Kuoppala <mika.kuoppala@intel.com> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Acked-by: Ben Widawsky <ben@bwidawsk.net> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gem_context.c')
-rw-r--r--drivers/gpu/drm/i915/i915_gem_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem_context.c b/drivers/gpu/drm/i915/i915_gem_context.c
index f5ea3c1351f8..ff471454968d 100644
--- a/drivers/gpu/drm/i915/i915_gem_context.c
+++ b/drivers/gpu/drm/i915/i915_gem_context.c
@@ -455,7 +455,7 @@ static int do_switch(struct i915_hw_context *to)
455 from->obj->dirty = 1; 455 from->obj->dirty = 1;
456 BUG_ON(from->obj->ring != ring); 456 BUG_ON(from->obj->ring != ring);
457 457
458 ret = i915_add_request(ring, NULL, NULL); 458 ret = i915_add_request(ring, NULL);
459 if (ret) { 459 if (ret) {
460 /* Too late, we've already scheduled a context switch. 460 /* Too late, we've already scheduled a context switch.
461 * Try to undo the change so that the hw state is 461 * Try to undo the change so that the hw state is