mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-29 04:54:49 +08:00
net: hns3: remove a couple of redundant assignments
The assignment to kinfo is redundant as this is a duplicate of the initialiation of kinfo a few lines earlier, so it can be removed. The assignment to v_tc_info is never read, so this variable is redundant and can be removed completely. Cleans up two clang warnings: drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c:433:34: warning: Value stored to 'kinfo' during its initialization is never read drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_tm.c:775:3: warning: Value stored to 'v_tc_info' is never read Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a666960d18
commit
ad88d35a62
@ -434,7 +434,6 @@ static void hclge_tm_vport_tc_info_update(struct hclge_vport *vport)
|
|||||||
struct hclge_dev *hdev = vport->back;
|
struct hclge_dev *hdev = vport->back;
|
||||||
u8 i;
|
u8 i;
|
||||||
|
|
||||||
kinfo = &vport->nic.kinfo;
|
|
||||||
vport->bw_limit = hdev->tm_info.pg_info[0].bw_limit;
|
vport->bw_limit = hdev->tm_info.pg_info[0].bw_limit;
|
||||||
kinfo->num_tc =
|
kinfo->num_tc =
|
||||||
min_t(u16, kinfo->num_tqps, hdev->tm_info.num_tc);
|
min_t(u16, kinfo->num_tqps, hdev->tm_info.num_tc);
|
||||||
@ -766,13 +765,11 @@ static int hclge_tm_pri_vnet_base_shaper_qs_cfg(struct hclge_vport *vport)
|
|||||||
{
|
{
|
||||||
struct hnae3_knic_private_info *kinfo = &vport->nic.kinfo;
|
struct hnae3_knic_private_info *kinfo = &vport->nic.kinfo;
|
||||||
struct hclge_dev *hdev = vport->back;
|
struct hclge_dev *hdev = vport->back;
|
||||||
struct hnae3_tc_info *v_tc_info;
|
|
||||||
u8 ir_u, ir_b, ir_s;
|
u8 ir_u, ir_b, ir_s;
|
||||||
u32 i;
|
u32 i;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
for (i = 0; i < kinfo->num_tc; i++) {
|
for (i = 0; i < kinfo->num_tc; i++) {
|
||||||
v_tc_info = &kinfo->tc_info[i];
|
|
||||||
ret = hclge_shaper_para_calc(
|
ret = hclge_shaper_para_calc(
|
||||||
hdev->tm_info.tc_info[i].bw_limit,
|
hdev->tm_info.tc_info[i].bw_limit,
|
||||||
HCLGE_SHAPER_LVL_QSET,
|
HCLGE_SHAPER_LVL_QSET,
|
||||||
|
Loading…
Reference in New Issue
Block a user