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

Commit b84cf536 authored by Chris Wilson's avatar Chris Wilson
Browse files

drm/i915: Use user, not driver, DRM_DEBUG for 2 context ioctls



For user actions, such as the context ioctls, we prefer to use DRM_DEBUG
rather than DRM_DEBUG_DRIVER as currently used.

Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Link: http://patchwork.freedesktop.org/patch/msgid/20161121113109.1976-1-chris@chris-wilson.co.uk


Reviewed-by: default avatarJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
parent e9cbc4bd
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1027,7 +1027,7 @@ int i915_gem_context_create_ioctl(struct drm_device *dev, void *data,
		return PTR_ERR(ctx);

	args->ctx_id = ctx->user_handle;
	DRM_DEBUG_DRIVER("HW context %d created\n", args->ctx_id);
	DRM_DEBUG("HW context %d created\n", args->ctx_id);

	return 0;
}
@@ -1060,7 +1060,7 @@ int i915_gem_context_destroy_ioctl(struct drm_device *dev, void *data,
	context_close(ctx);
	mutex_unlock(&dev->struct_mutex);

	DRM_DEBUG_DRIVER("HW context %d destroyed\n", args->ctx_id);
	DRM_DEBUG("HW context %d destroyed\n", args->ctx_id);
	return 0;
}