diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2018-02-08 11:14:53 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2018-02-08 13:59:00 +0000 |
commit | d8802126da6869c2fc3a51e7475846e9c54f3ffb (patch) | |
tree | 7f56dab559c23ddc5a0a31cc646270e967d631e0 | |
parent | a5a5ae2abe3ba776da8c384e362dc0d2b7dc93d7 (diff) | |
download | linux-d8802126da6869c2fc3a51e7475846e9c54f3ffb.tar.bz2 |
drm/i915: Fix kerneldoc warnings for i915_gem_request
drivers/gpu/drm/i915/i915_gem_request.c:941: warning: No description found for parameter 'write'
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180208111453.32567-1-chris@chris-wilson.co.uk
-rw-r--r-- | drivers/gpu/drm/i915/i915_gem_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem_request.c b/drivers/gpu/drm/i915/i915_gem_request.c index 8a35b5591e0e..8bc7c50b8418 100644 --- a/drivers/gpu/drm/i915/i915_gem_request.c +++ b/drivers/gpu/drm/i915/i915_gem_request.c @@ -918,9 +918,9 @@ i915_gem_request_await_dma_fence(struct drm_i915_gem_request *req, /** * i915_gem_request_await_object - set this request to (async) wait upon a bo - * * @to: request we are wishing to use * @obj: object which may be in use on another ring. + * @write: whether the wait is on behalf of a writer * * This code is meant to abstract object synchronization with the GPU. * Conceptually we serialise writes between engines inside the GPU. |