net/hns3: remove unused variables

Remove unused variables.

Signed-off-by: Huisong Li <lihuisong@huawei.com>
Acked-by: Min Hu (Connor) <humin29@huawei.com>
This commit is contained in:
Huisong Li 2022-01-22 09:51:34 +08:00 committed by Ferruh Yigit
parent f13c07a570
commit a65941e9c4
3 changed files with 1 additions and 16 deletions

View File

@ -750,19 +750,9 @@ static int
hns3_dcb_update_tc_queue_mapping(struct hns3_hw *hw, uint16_t nb_rx_q,
uint16_t nb_tx_q)
{
struct hns3_adapter *hns = HNS3_DEV_HW_TO_ADAPTER(hw);
struct hns3_pf *pf = &hns->pf;
int ret;
hw->num_tc = hw->dcb_info.num_tc;
ret = hns3_queue_to_tc_mapping(hw, nb_rx_q, nb_tx_q);
if (ret)
return ret;
if (!hns->is_vf)
memcpy(pf->prio_tc, hw->dcb_info.prio_tc, HNS3_MAX_USER_PRIO);
return 0;
return hns3_queue_to_tc_mapping(hw, nb_rx_q, nb_tx_q);
}
int

View File

@ -2546,9 +2546,6 @@ hns3_parse_cfg(struct hns3_cfg *cfg, struct hns3_cmd_desc *desc)
cfg->media_type = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
HNS3_CFG_MEDIA_TP_M,
HNS3_CFG_MEDIA_TP_S);
cfg->rx_buf_len = hns3_get_field(rte_le_to_cpu_32(req->param[1]),
HNS3_CFG_RX_BUF_LEN_M,
HNS3_CFG_RX_BUF_LEN_S);
/* get mac address */
mac_addr_tmp = rte_le_to_cpu_32(req->param[2]);
mac_addr_tmp_high = hns3_get_field(rte_le_to_cpu_32(req->param[3]),

View File

@ -156,7 +156,6 @@ struct hns3_tc_queue_info {
struct hns3_cfg {
uint8_t tc_num;
uint16_t tqp_desc_num;
uint16_t rx_buf_len;
uint16_t rss_size_max;
uint8_t phy_addr;
uint8_t media_type;
@ -804,7 +803,6 @@ struct hns3_pf {
uint8_t tc_max; /* max number of tc driver supported */
uint8_t local_max_tc; /* max number of local tc */
uint8_t pfc_max;
uint8_t prio_tc[HNS3_MAX_USER_PRIO]; /* TC indexed by prio */
uint16_t pause_time;
bool support_fc_autoneg; /* support FC autonegotiate */
bool support_multi_tc_pause;