Commit dcef82fa authored by Lee Jones's avatar Lee Jones Committed by Jason Gunthorpe

RDMA/hw/i40iw/i40iw_virtchnl: Fix a bunch of kernel-doc issues

Fixes the following W=1 kernel build warning(s):

 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:132: warning: Function parameter or member 'rsrc_type' not described in 'vchnl_vf_send_add_hmc_objs_req'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:132: warning: Function parameter or member 'start_index' not described in 'vchnl_vf_send_add_hmc_objs_req'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:132: warning: Function parameter or member 'rsrc_count' not described in 'vchnl_vf_send_add_hmc_objs_req'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:170: warning: Function parameter or member 'rsrc_type' not described in 'vchnl_vf_send_del_hmc_objs_req'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:170: warning: Function parameter or member 'start_index' not described in 'vchnl_vf_send_del_hmc_objs_req'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:170: warning: Function parameter or member 'rsrc_count' not described in 'vchnl_vf_send_del_hmc_objs_req'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:230: warning: Function parameter or member 'hmc_fcn' not described in 'vchnl_pf_send_get_hmc_fcn_resp'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:283: warning: Function parameter or member 'op_ret_code' not described in 'vchnl_pf_send_error_resp'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:305: warning: Function parameter or member 'dev' not described in 'pf_cqp_get_hmc_fcn_callback'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:305: warning: Function parameter or member 'callback_param' not described in 'pf_cqp_get_hmc_fcn_callback'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:305: warning: Function parameter or member 'cqe_info' not described in 'pf_cqp_get_hmc_fcn_callback'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:305: warning: Excess function parameter 'cqp_req_param' description in 'pf_cqp_get_hmc_fcn_callback'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:305: warning: Excess function parameter 'not_used' description in 'pf_cqp_get_hmc_fcn_callback'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:337: warning: Function parameter or member 'work_vf_dev' not described in 'pf_add_hmc_obj_callback'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:337: warning: Excess function parameter 'vf_dev' description in 'pf_add_hmc_obj_callback'
 drivers/infiniband/hw/i40iw/i40iw_virtchnl.c:412: warning: Function parameter or member 'dev' not described in 'i40iw_vf_init_pestat'

Link: https://lore.kernel.org/r/20210118223929.512175-15-lee.jones@linaro.org
Cc: Faisal Latif <faisal.latif@intel.com>
Cc: Shiraz Saleem <shiraz.saleem@intel.com>
Cc: Doug Ledford <dledford@redhat.com>
Cc: Jason Gunthorpe <jgg@ziepe.ca>
Cc: linux-rdma@vger.kernel.org
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarJason Gunthorpe <jgg@nvidia.com>
parent d246bbdc
...@@ -119,7 +119,7 @@ static enum i40iw_status_code vchnl_vf_send_get_pe_stats_req(struct i40iw_sc_dev ...@@ -119,7 +119,7 @@ static enum i40iw_status_code vchnl_vf_send_get_pe_stats_req(struct i40iw_sc_dev
return ret_code; return ret_code;
} }
/** /*
* vchnl_vf_send_add_hmc_objs_req - Add HMC objects * vchnl_vf_send_add_hmc_objs_req - Add HMC objects
* @dev: IWARP device pointer * @dev: IWARP device pointer
* @vchnl_req: Virtual channel message request pointer * @vchnl_req: Virtual channel message request pointer
...@@ -158,9 +158,9 @@ static enum i40iw_status_code vchnl_vf_send_add_hmc_objs_req(struct i40iw_sc_dev ...@@ -158,9 +158,9 @@ static enum i40iw_status_code vchnl_vf_send_add_hmc_objs_req(struct i40iw_sc_dev
* vchnl_vf_send_del_hmc_objs_req - del HMC objects * vchnl_vf_send_del_hmc_objs_req - del HMC objects
* @dev: IWARP device pointer * @dev: IWARP device pointer
* @vchnl_req: Virtual channel message request pointer * @vchnl_req: Virtual channel message request pointer
* @ rsrc_type - resource type to delete * @rsrc_type: resource type to delete
* @ start_index - starting index for resource * @start_index: starting index for resource
* @ rsrc_count - number of resource type to delete * @rsrc_count: number of resource type to delete
*/ */
static enum i40iw_status_code vchnl_vf_send_del_hmc_objs_req(struct i40iw_sc_dev *dev, static enum i40iw_status_code vchnl_vf_send_del_hmc_objs_req(struct i40iw_sc_dev *dev,
struct i40iw_virtchnl_req *vchnl_req, struct i40iw_virtchnl_req *vchnl_req,
...@@ -222,6 +222,7 @@ static void vchnl_pf_send_get_ver_resp(struct i40iw_sc_dev *dev, ...@@ -222,6 +222,7 @@ static void vchnl_pf_send_get_ver_resp(struct i40iw_sc_dev *dev,
* @dev: IWARP device pointer * @dev: IWARP device pointer
* @vf_id: Virtual function ID associated with the message * @vf_id: Virtual function ID associated with the message
* @vchnl_msg: Virtual channel message buffer pointer * @vchnl_msg: Virtual channel message buffer pointer
* @hmc_fcn: HMC function index pointer
*/ */
static void vchnl_pf_send_get_hmc_fcn_resp(struct i40iw_sc_dev *dev, static void vchnl_pf_send_get_hmc_fcn_resp(struct i40iw_sc_dev *dev,
u32 vf_id, u32 vf_id,
...@@ -276,6 +277,7 @@ static void vchnl_pf_send_get_pe_stats_resp(struct i40iw_sc_dev *dev, ...@@ -276,6 +277,7 @@ static void vchnl_pf_send_get_pe_stats_resp(struct i40iw_sc_dev *dev,
* @dev: IWARP device pointer * @dev: IWARP device pointer
* @vf_id: Virtual function ID associated with the message * @vf_id: Virtual function ID associated with the message
* @vchnl_msg: Virtual channel message buffer pointer * @vchnl_msg: Virtual channel message buffer pointer
* @op_ret_code: I40IW_ERR_* status code
*/ */
static void vchnl_pf_send_error_resp(struct i40iw_sc_dev *dev, u32 vf_id, static void vchnl_pf_send_error_resp(struct i40iw_sc_dev *dev, u32 vf_id,
struct i40iw_virtchnl_op_buf *vchnl_msg, struct i40iw_virtchnl_op_buf *vchnl_msg,
...@@ -297,8 +299,9 @@ static void vchnl_pf_send_error_resp(struct i40iw_sc_dev *dev, u32 vf_id, ...@@ -297,8 +299,9 @@ static void vchnl_pf_send_error_resp(struct i40iw_sc_dev *dev, u32 vf_id,
/** /**
* pf_cqp_get_hmc_fcn_callback - Callback for Get HMC Fcn * pf_cqp_get_hmc_fcn_callback - Callback for Get HMC Fcn
* @cqp_req_param: CQP Request param value * @dev: IWARP device pointer
* @not_used: unused CQP callback parameter * @callback_param: unused CQP callback parameter
* @cqe_info: CQE information pointer
*/ */
static void pf_cqp_get_hmc_fcn_callback(struct i40iw_sc_dev *dev, void *callback_param, static void pf_cqp_get_hmc_fcn_callback(struct i40iw_sc_dev *dev, void *callback_param,
struct i40iw_ccq_cqe_info *cqe_info) struct i40iw_ccq_cqe_info *cqe_info)
...@@ -331,7 +334,7 @@ static void pf_cqp_get_hmc_fcn_callback(struct i40iw_sc_dev *dev, void *callback ...@@ -331,7 +334,7 @@ static void pf_cqp_get_hmc_fcn_callback(struct i40iw_sc_dev *dev, void *callback
/** /**
* pf_add_hmc_obj - Callback for Add HMC Object * pf_add_hmc_obj - Callback for Add HMC Object
* @vf_dev: pointer to the VF Device * @work_vf_dev: pointer to the VF Device
*/ */
static void pf_add_hmc_obj_callback(void *work_vf_dev) static void pf_add_hmc_obj_callback(void *work_vf_dev)
{ {
...@@ -404,7 +407,7 @@ static void pf_del_hmc_obj_callback(void *work_vf_dev) ...@@ -404,7 +407,7 @@ static void pf_del_hmc_obj_callback(void *work_vf_dev)
/** /**
* i40iw_vf_init_pestat - Initialize stats for VF * i40iw_vf_init_pestat - Initialize stats for VF
* @devL pointer to the VF Device * @dev: pointer to the VF Device
* @stats: Statistics structure pointer * @stats: Statistics structure pointer
* @index: Stats index * @index: Stats index
*/ */
......
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