]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
dma-buf: fix kernel-doc warning and typos
authorRandy Dunlap <rdunlap@infradead.org>
Tue, 16 Aug 2016 23:31:00 +0000 (16:31 -0700)
committerSumit Semwal <sumit.semwal@linaro.org>
Wed, 17 Aug 2016 03:49:28 +0000 (09:19 +0530)
Fix dma-buf kernel-doc warning and 2 minor typos in
fence_array_create().

Fixes this warning:
..//drivers/dma-buf/fence-array.c:124: warning: No description found for
parameter 'signal_on_any'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: linux-media@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org
Cc: linaro-mm-sig@lists.linaro.org
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
Link: http://patchwork.freedesktop.org/patch/msgid/224865a5-947d-9a28-c60a-18fa86bc9329@infradead.org
drivers/dma-buf/fence-array.c

index ee500226197bc95bd0d30c274fddea18c5121944..f1989fcaf3540bc037fa8330dda396375c37194d 100644 (file)
@@ -107,14 +107,14 @@ EXPORT_SYMBOL(fence_array_ops);
  * @fences:            [in]    array containing the fences
  * @context:           [in]    fence context to use
  * @seqno:             [in]    sequence number to use
- * @signal_on_any      [in]    signal on any fence in the array
+ * @signal_on_any:     [in]    signal on any fence in the array
  *
  * Allocate a fence_array object and initialize the base fence with fence_init().
  * In case of error it returns NULL.
  *
- * The caller should allocte the fences array with num_fences size
+ * The caller should allocate the fences array with num_fences size
  * and fill it with the fences it wants to add to the object. Ownership of this
- * array is take and fence_put() is used on each fence on release.
+ * array is taken and fence_put() is used on each fence on release.
  *
  * If @signal_on_any is true the fence array signals if any fence in the array
  * signals, otherwise it signals when all fences in the array signal.