The virtio_dma_buf_ops kernel-doc describes the required get_uuid
callback as get_uid. This leaves get_uuid undocumented and causes
kernel-doc to report an excess get_uid description.
Use the actual member name in the documentation.
Fixes: a0308938ec81 ("virtio: add dma-buf support for exported objects")
Signed-off-by: GuoHan Zhao <[email protected]>
---
include/linux/virtio_dma_buf.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/linux/virtio_dma_buf.h b/include/linux/virtio_dma_buf.h
index a2fdf217ac62..545ac5f17a54 100644
--- a/include/linux/virtio_dma_buf.h
+++ b/include/linux/virtio_dma_buf.h
@@ -17,7 +17,7 @@
* @ops: the base dma_buf_ops. ops.attach MUST be virtio_dma_buf_attach.
* @device_attach: [optional] callback invoked by virtio_dma_buf_attach during
* all attach operations.
- * @get_uid: [required] callback to get the uuid of the exported object.
+ * @get_uuid: [required] callback to get the uuid of the exported object.
*/
struct virtio_dma_buf_ops {
struct dma_buf_ops ops;
--
2.43.0