Commit 92d207f3 authored by Kaike Wan's avatar Kaike Wan Committed by Greg Kroah-Hartman

staging/rdma/hfi1: Fix qp.h comments

This patch fixes a few incorrect header file comments in qp.h
Reviewed-by: default avatarMike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: default avatarKaike Wan <kaike.wan@intel.com>
Signed-off-by: default avatarJubin John <jubin.john@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3802f7eb
...@@ -211,7 +211,7 @@ int hfi1_qp_init(struct hfi1_ibdev *dev); ...@@ -211,7 +211,7 @@ int hfi1_qp_init(struct hfi1_ibdev *dev);
void hfi1_qp_exit(struct hfi1_ibdev *dev); void hfi1_qp_exit(struct hfi1_ibdev *dev);
/** /**
* hfi1_qp_waitup - wake up on the indicated event * hfi1_qp_wakeup - wake up on the indicated event
* @qp: the QP * @qp: the QP
* @flag: flag the qp on which the qp is stalled * @flag: flag the qp on which the qp is stalled
*/ */
...@@ -222,19 +222,19 @@ struct sdma_engine *qp_to_sdma_engine(struct hfi1_qp *qp, u8 sc5); ...@@ -222,19 +222,19 @@ struct sdma_engine *qp_to_sdma_engine(struct hfi1_qp *qp, u8 sc5);
struct qp_iter; struct qp_iter;
/** /**
* qp_iter_init - wake up on the indicated event * qp_iter_init - initialize the iterator for the qp hash list
* @dev: the hfi1_ibdev * @dev: the hfi1_ibdev
*/ */
struct qp_iter *qp_iter_init(struct hfi1_ibdev *dev); struct qp_iter *qp_iter_init(struct hfi1_ibdev *dev);
/** /**
* qp_iter_next - wakeup on the indicated event * qp_iter_next - Find the next qp in the hash list
* @iter: the iterator for the qp hash list * @iter: the iterator for the qp hash list
*/ */
int qp_iter_next(struct qp_iter *iter); int qp_iter_next(struct qp_iter *iter);
/** /**
* qp_iter_next - wake up on the indicated event * qp_iter_print - print the qp information to seq_file
* @s: the seq_file to emit the qp information on * @s: the seq_file to emit the qp information on
* @iter: the iterator for the qp hash list * @iter: the iterator for the qp hash list
*/ */
......
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