Commit 14fa9fe5 authored by Lee Jones's avatar Lee Jones Committed by Jason Gunthorpe

RDMA/hw/i40iw/i40iw_ctrl: Fix a bunch of misspellings and formatting issues

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

 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:193: warning: Function parameter or member 'obj_info' not described in 'i40iw_sc_decode_fpm_query'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:193: warning: Excess function parameter 'info' description in 'i40iw_sc_decode_fpm_query'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:218: warning: Function parameter or member 'hmc_info' not described in 'i40iw_sc_parse_fpm_query_buf'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:218: warning: Excess function parameter 'info' description in 'i40iw_sc_parse_fpm_query_buf'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:784: warning: Function parameter or member 'compl_info' not described in 'i40iw_sc_poll_for_cqp_op_done'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:784: warning: Excess function parameter 'info' description in 'i40iw_sc_poll_for_cqp_op_done'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:947: warning: Function parameter or member 'commit_fpm_mem' not described in 'i40iw_sc_commit_fpm_values'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:1032: warning: Function parameter or member 'dev' not described in 'i40iw_get_rdma_features'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:1468: warning: Function parameter or member 'ignore_ref_count' not described in 'i40iw_sc_del_local_mac_ipaddr_entry'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:2314: warning: Function parameter or member 'scratch' not described in 'i40iw_sc_cq_modify'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:3682: warning: Function parameter or member 'info' not described in 'cqp_sds_wqe_fill'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:4894: warning: Function parameter or member 'stats' not described in 'i40iw_hw_stats_read_32'
 drivers/infiniband/hw/i40iw/i40iw_ctrl.c:4894: warning: Excess function parameter 'stat' description in 'i40iw_hw_stats_read_32'

Link: https://lore.kernel.org/r/20210118223929.512175-4-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 4c3b53e1
...@@ -181,7 +181,7 @@ static enum i40iw_status_code i40iw_sc_parse_fpm_commit_buf( ...@@ -181,7 +181,7 @@ static enum i40iw_status_code i40iw_sc_parse_fpm_commit_buf(
* i40iw_sc_decode_fpm_query() - Decode a 64 bit value into max count and size * i40iw_sc_decode_fpm_query() - Decode a 64 bit value into max count and size
* @buf: ptr to fpm query buffer * @buf: ptr to fpm query buffer
* @buf_idx: index into buf * @buf_idx: index into buf
* @info: ptr to i40iw_hmc_obj_info struct * @obj_info: ptr to i40iw_hmc_obj_info struct
* @rsrc_idx: resource index into info * @rsrc_idx: resource index into info
* *
* Decode a 64 bit value from fpm query buffer into max count and size * Decode a 64 bit value from fpm query buffer into max count and size
...@@ -205,7 +205,7 @@ static u64 i40iw_sc_decode_fpm_query(u64 *buf, ...@@ -205,7 +205,7 @@ static u64 i40iw_sc_decode_fpm_query(u64 *buf,
/** /**
* i40iw_sc_parse_fpm_query_buf() - parses fpm query buffer * i40iw_sc_parse_fpm_query_buf() - parses fpm query buffer
* @buf: ptr to fpm query buffer * @buf: ptr to fpm query buffer
* @info: ptr to i40iw_hmc_obj_info struct * @hmc_info: ptr to i40iw_hmc_obj_info struct
* @hmc_fpm_misc: ptr to fpm data * @hmc_fpm_misc: ptr to fpm data
* *
* parses fpm query buffer and copy max_cnt and * parses fpm query buffer and copy max_cnt and
...@@ -775,7 +775,7 @@ static enum i40iw_status_code i40iw_sc_ccq_get_cqe_info( ...@@ -775,7 +775,7 @@ static enum i40iw_status_code i40iw_sc_ccq_get_cqe_info(
* i40iw_sc_poll_for_cqp_op_done - Waits for last write to complete in CQP SQ * i40iw_sc_poll_for_cqp_op_done - Waits for last write to complete in CQP SQ
* @cqp: struct for cqp hw * @cqp: struct for cqp hw
* @op_code: cqp opcode for completion * @op_code: cqp opcode for completion
* @info: completion q entry to return * @compl_info: completion q entry to return
*/ */
static enum i40iw_status_code i40iw_sc_poll_for_cqp_op_done( static enum i40iw_status_code i40iw_sc_poll_for_cqp_op_done(
struct i40iw_sc_cqp *cqp, struct i40iw_sc_cqp *cqp,
...@@ -933,7 +933,7 @@ static enum i40iw_status_code i40iw_sc_commit_fpm_values_done(struct i40iw_sc_cq ...@@ -933,7 +933,7 @@ static enum i40iw_status_code i40iw_sc_commit_fpm_values_done(struct i40iw_sc_cq
* @cqp: struct for cqp hw * @cqp: struct for cqp hw
* @scratch: u64 saved to be used during cqp completion * @scratch: u64 saved to be used during cqp completion
* @hmc_fn_id: hmc function id * @hmc_fn_id: hmc function id
* @commit_fpm_mem; Memory for fpm values * @commit_fpm_mem: Memory for fpm values
* @post_sq: flag for cqp db to ring * @post_sq: flag for cqp db to ring
* @wait_type: poll ccq or cqp registers for cqp completion * @wait_type: poll ccq or cqp registers for cqp completion
*/ */
...@@ -1026,7 +1026,7 @@ i40iw_sc_query_rdma_features(struct i40iw_sc_cqp *cqp, ...@@ -1026,7 +1026,7 @@ i40iw_sc_query_rdma_features(struct i40iw_sc_cqp *cqp,
/** /**
* i40iw_get_rdma_features - get RDMA features * i40iw_get_rdma_features - get RDMA features
* @dev - sc device struct * @dev: sc device struct
*/ */
enum i40iw_status_code i40iw_get_rdma_features(struct i40iw_sc_dev *dev) enum i40iw_status_code i40iw_get_rdma_features(struct i40iw_sc_dev *dev)
{ {
...@@ -1456,7 +1456,7 @@ static enum i40iw_status_code i40iw_sc_add_local_mac_ipaddr_entry( ...@@ -1456,7 +1456,7 @@ static enum i40iw_status_code i40iw_sc_add_local_mac_ipaddr_entry(
* @cqp: struct for cqp hw * @cqp: struct for cqp hw
* @scratch: u64 saved to be used during cqp completion * @scratch: u64 saved to be used during cqp completion
* @entry_idx: index of mac entry * @entry_idx: index of mac entry
* @ ignore_ref_count: to force mac adde delete * @ignore_ref_count: to force mac adde delete
* @post_sq: flag for cqp db to ring * @post_sq: flag for cqp db to ring
*/ */
static enum i40iw_status_code i40iw_sc_del_local_mac_ipaddr_entry( static enum i40iw_status_code i40iw_sc_del_local_mac_ipaddr_entry(
...@@ -2304,7 +2304,7 @@ static enum i40iw_status_code i40iw_sc_cq_destroy(struct i40iw_sc_cq *cq, ...@@ -2304,7 +2304,7 @@ static enum i40iw_status_code i40iw_sc_cq_destroy(struct i40iw_sc_cq *cq,
* i40iw_sc_cq_modify - modify a Completion Queue * i40iw_sc_cq_modify - modify a Completion Queue
* @cq: cq struct * @cq: cq struct
* @info: modification info struct * @info: modification info struct
* @scratch: * @scratch: u64 saved to be used during cqp completion
* @post_sq: flag to post to sq * @post_sq: flag to post to sq
*/ */
static enum i40iw_status_code i40iw_sc_cq_modify(struct i40iw_sc_cq *cq, static enum i40iw_status_code i40iw_sc_cq_modify(struct i40iw_sc_cq *cq,
...@@ -3673,7 +3673,7 @@ static enum i40iw_status_code i40iw_sc_configure_iw_fpm(struct i40iw_sc_dev *dev ...@@ -3673,7 +3673,7 @@ static enum i40iw_status_code i40iw_sc_configure_iw_fpm(struct i40iw_sc_dev *dev
/** /**
* cqp_sds_wqe_fill - fill cqp wqe doe sd * cqp_sds_wqe_fill - fill cqp wqe doe sd
* @cqp: struct for cqp hw * @cqp: struct for cqp hw
* @info; sd info for wqe * @info: sd info for wqe
* @scratch: u64 saved to be used during cqp completion * @scratch: u64 saved to be used during cqp completion
*/ */
static enum i40iw_status_code cqp_sds_wqe_fill(struct i40iw_sc_cqp *cqp, static enum i40iw_status_code cqp_sds_wqe_fill(struct i40iw_sc_cqp *cqp,
...@@ -4884,7 +4884,7 @@ void i40iw_hw_stats_init(struct i40iw_vsi_pestat *stats, u8 fcn_idx, bool is_pf) ...@@ -4884,7 +4884,7 @@ void i40iw_hw_stats_init(struct i40iw_vsi_pestat *stats, u8 fcn_idx, bool is_pf)
/** /**
* i40iw_hw_stats_read_32 - Read 32-bit HW stats counters and accommodates for roll-overs. * i40iw_hw_stats_read_32 - Read 32-bit HW stats counters and accommodates for roll-overs.
* @stat: pestat struct * @stats: pestat struct
* @index: index in HW stats table which contains offset reg-addr * @index: index in HW stats table which contains offset reg-addr
* @value: hw stats value * @value: hw stats value
*/ */
......
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