Skip to content

Commit

Permalink
net/hinic/base: remove unused function parameters
Browse files Browse the repository at this point in the history
Remove unused parameters for mgmt channel with no ack.

Fixes: a4957d8 ("net/hinic/base: add mgmt module")
Cc: stable@dpdk.org

Signed-off-by: Xiaoyun Wang <cloud.wangxiaoyun@huawei.com>
  • Loading branch information
Xiaoyun Wang authored and Ferruh Yigit committed Jul 7, 2020
1 parent d807dd7 commit 214164a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion drivers/net/hinic/base/hinic_pmd_hwdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ static int hinic_pf_rx_tx_flush(struct hinic_hwdev *hwdev)

err = hinic_msg_to_mgmt_no_ack(hwdev, HINIC_MOD_COMM,
HINIC_MGMT_CMD_START_FLR, &clr_res,
sizeof(clr_res), NULL, NULL);
sizeof(clr_res));
if (err) {
PMD_DRV_LOG(WARNING, "Notice flush msg failed, err: %d", err);
ret = err;
Expand Down
3 changes: 1 addition & 2 deletions drivers/net/hinic/base/hinic_pmd_mgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -504,8 +504,7 @@ int hinic_msg_to_mgmt_sync(void *hwdev, enum hinic_mod_type mod, u8 cmd,
}

int hinic_msg_to_mgmt_no_ack(void *hwdev, enum hinic_mod_type mod, u8 cmd,
void *buf_in, u16 in_size, __rte_unused void *buf_out,
__rte_unused u16 *out_size)
void *buf_in, u16 in_size)
{
struct hinic_msg_pf_to_mgmt *pf_to_mgmt =
((struct hinic_hwdev *)hwdev)->pf_to_mgmt;
Expand Down
3 changes: 1 addition & 2 deletions drivers/net/hinic/base/hinic_pmd_mgmt.h
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,7 @@ struct hinic_msg_pf_to_mgmt {
};

int hinic_msg_to_mgmt_no_ack(void *hwdev, enum hinic_mod_type mod, u8 cmd,
void *buf_in, u16 in_size, void *buf_out,
u16 *out_size);
void *buf_in, u16 in_size);

int hinic_comm_pf_to_mgmt_init(struct hinic_hwdev *hwdev);

Expand Down

0 comments on commit 214164a

Please sign in to comment.