Commit 62cbff32 authored by Kamal Heib's avatar Kamal Heib Committed by Jason Gunthorpe

RDMA/vmw_pvrdma: Fix kernel-doc documentation

Fix the kernel-doc documentation by matching between the functions
definitions and documentation.

Link: https://lore.kernel.org/r/20200820123512.105193-1-kamalheib1@gmail.comSigned-off-by: default avatarKamal Heib <kamalheib1@gmail.com>
Acked-by: default avatarAdit Ranadive <aditr@vmware.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent fd49ddaf
...@@ -375,7 +375,7 @@ static int pvrdma_poll_one(struct pvrdma_cq *cq, struct pvrdma_qp **cur_qp, ...@@ -375,7 +375,7 @@ static int pvrdma_poll_one(struct pvrdma_cq *cq, struct pvrdma_qp **cur_qp,
* pvrdma_poll_cq - poll for work completion queue entries * pvrdma_poll_cq - poll for work completion queue entries
* @ibcq: completion queue * @ibcq: completion queue
* @num_entries: the maximum number of entries * @num_entries: the maximum number of entries
* @entry: pointer to work completion array * @wc: pointer to work completion array
* *
* @return: number of polled completion entries * @return: number of polled completion entries
*/ */
......
...@@ -270,6 +270,7 @@ struct ib_mr *pvrdma_alloc_mr(struct ib_pd *pd, enum ib_mr_type mr_type, ...@@ -270,6 +270,7 @@ struct ib_mr *pvrdma_alloc_mr(struct ib_pd *pd, enum ib_mr_type mr_type,
/** /**
* pvrdma_dereg_mr - deregister a memory region * pvrdma_dereg_mr - deregister a memory region
* @ibmr: memory region * @ibmr: memory region
* @udata: pointer to user data
* *
* @return: 0 on success. * @return: 0 on success.
*/ */
......
...@@ -90,7 +90,7 @@ int pvrdma_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr) ...@@ -90,7 +90,7 @@ int pvrdma_query_srq(struct ib_srq *ibsrq, struct ib_srq_attr *srq_attr)
/** /**
* pvrdma_create_srq - create shared receive queue * pvrdma_create_srq - create shared receive queue
* @pd: protection domain * @ibsrq: the IB shared receive queue
* @init_attr: shared receive queue attributes * @init_attr: shared receive queue attributes
* @udata: user data * @udata: user data
* *
......
...@@ -502,10 +502,9 @@ void pvrdma_dealloc_pd(struct ib_pd *pd, struct ib_udata *udata) ...@@ -502,10 +502,9 @@ void pvrdma_dealloc_pd(struct ib_pd *pd, struct ib_udata *udata)
/** /**
* pvrdma_create_ah - create an address handle * pvrdma_create_ah - create an address handle
* @pd: the protection domain * @ibah: the IB address handle
* @ah_attr: the attributes of the AH * @init_attr: the attributes of the AH
* @udata: user data blob * @udata: pointer to user data
* @flags: create address handle flags (see enum rdma_create_ah_flags)
* *
* @return: 0 on success, otherwise errno. * @return: 0 on success, otherwise errno.
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment