projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d3ba80
)
dma-buf: fence-chain: Document missing dma_fence_chain_init() parameter in kerneldoc
author
Krzysztof Kozlowski
<krzk@kernel.org>
Wed, 19 Aug 2020 17:51:34 +0000
(19:51 +0200)
committer
Sumit Semwal
<sumit.semwal@linaro.org>
Thu, 3 Sep 2020 12:17:02 +0000
(17:47 +0530)
Fix W=1 compile warnings (invalid kerneldoc):
drivers/dma-buf/dma-fence-chain.c:233: warning: Function parameter or member 'seqno' not described in 'dma_fence_chain_init'
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Sumit Semwal <sumit.semwal@linaro.org>
Link:
https://patchwork.freedesktop.org/patch/msgid/20200819175134.19261-2-krzk@kernel.org
drivers/dma-buf/dma-fence-chain.c
patch
|
blob
|
history
diff --git
a/drivers/dma-buf/dma-fence-chain.c
b/drivers/dma-buf/dma-fence-chain.c
index
3d12350
..
7d129e6
100644
(file)
--- a/
drivers/dma-buf/dma-fence-chain.c
+++ b/
drivers/dma-buf/dma-fence-chain.c
@@
-222,6
+222,7
@@
EXPORT_SYMBOL(dma_fence_chain_ops);
* @chain: the chain node to initialize
* @prev: the previous fence
* @fence: the current fence
+ * @seqno: the sequence number to use for the fence chain
*
* Initialize a new chain node and either start a new chain or add the node to
* the existing chain of the previous fence.