From: Hao Chen Date: Fri, 3 Dec 2021 09:20:58 +0000 (+0800) Subject: net: hns3: replace one tab with space in for statement X-Git-Tag: v6.6.17~8491^2~265^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7acf76b1cd0141e7de070594ddb0bb26fdb8ab4e;p=platform%2Fkernel%2Flinux-rpi.git net: hns3: replace one tab with space in for statement Replace one tab with space between symbol ')' and '{' in for statement of function hclge_map_tqp(). Signed-off-by: Hao Chen Signed-off-by: Guangbin Huang Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c index e050e45..3edea32 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -1890,7 +1890,7 @@ static int hclge_map_tqp(struct hclge_dev *hdev) u16 i, num_vport; num_vport = hdev->num_req_vfs + 1; - for (i = 0; i < num_vport; i++) { + for (i = 0; i < num_vport; i++) { int ret; ret = hclge_map_tqp_to_vport(hdev, vport);