diff options
author | Randy Dunlap <[email protected]> | 2021-06-27 17:40:12 -0700 |
---|---|---|
committer | Daniel Vetter <[email protected]> | 2021-06-29 18:09:24 +0200 |
commit | 82c850c12fc250bdba25e7e66f54adab2ffcfcd6 (patch) | |
tree | 1ec83cd333c37aa8a522a1bf9cf144fcb772fd06 | |
parent | ba2472eaf7255dfba27cea0b674ffcc0ee348293 (diff) |
<linux/dma-resv.h>: correct a function name in kernel-doc
Fix kernel-doc function name warning:
../include/linux/dma-resv.h:227: warning: expecting prototype for dma_resv_exclusive(). Prototype was for dma_resv_excl_fence() instead
Fixes: 6edbd6abb783d ("dma-buf: rename and cleanup dma_resv_get_excl v3")
Signed-off-by: Randy Dunlap <[email protected]>
Cc: Sumit Semwal <[email protected]>
Cc: Christian König <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Signed-off-by: Daniel Vetter <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | include/linux/dma-resv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/dma-resv.h b/include/linux/dma-resv.h index 562b885cf9c3..e1ca2080a1ff 100644 --- a/include/linux/dma-resv.h +++ b/include/linux/dma-resv.h @@ -212,7 +212,7 @@ static inline void dma_resv_unlock(struct dma_resv *obj) } /** - * dma_resv_exclusive - return the object's exclusive fence + * dma_resv_excl_fence - return the object's exclusive fence * @obj: the reservation object * * Returns the exclusive fence (if any). Caller must either hold the objects |