mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-19 04:39:06 +08:00
net: hns3: remove an unused parameter in hclge_vf_rate_param_check()
Parameter vf in hclge_vf_rate_param_check() is unused now, so remove it. Signed-off-by: Huazhong Tan <tanhuazhong@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
64749c9c38
commit
11ef971f5a
@@ -10831,7 +10831,7 @@ static void hclge_reset_vf_rate(struct hclge_dev *hdev)
|
||||
}
|
||||
}
|
||||
|
||||
static int hclge_vf_rate_param_check(struct hclge_dev *hdev, int vf,
|
||||
static int hclge_vf_rate_param_check(struct hclge_dev *hdev,
|
||||
int min_tx_rate, int max_tx_rate)
|
||||
{
|
||||
if (min_tx_rate != 0 ||
|
||||
@@ -10852,7 +10852,7 @@ static int hclge_set_vf_rate(struct hnae3_handle *handle, int vf,
|
||||
struct hclge_dev *hdev = vport->back;
|
||||
int ret;
|
||||
|
||||
ret = hclge_vf_rate_param_check(hdev, vf, min_tx_rate, max_tx_rate);
|
||||
ret = hclge_vf_rate_param_check(hdev, min_tx_rate, max_tx_rate);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user