2020-12-09 13:41:07

by Zheng Yongjun

[permalink] [raw]
Subject: [PATCH net-next] hisilicon/hns3: convert comma to semicolon

Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <[email protected]>
---
drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
index 1f026408ad38..ed2a3c88aab1 100644
--- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
+++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c
@@ -4976,7 +4976,7 @@ static int hclge_init_fd_config(struct hclge_dev *hdev)
}

key_cfg = &hdev->fd_cfg.key_cfg[HCLGE_FD_STAGE_1];
- key_cfg->key_sel = HCLGE_FD_KEY_BASE_ON_TUPLE,
+ key_cfg->key_sel = HCLGE_FD_KEY_BASE_ON_TUPLE;
key_cfg->inner_sipv6_word_en = LOW_2_WORDS;
key_cfg->inner_dipv6_word_en = LOW_2_WORDS;
key_cfg->outer_sipv6_word_en = 0;
--
2.22.0


2020-12-10 00:44:53

by David Miller

[permalink] [raw]
Subject: Re: [PATCH net-next] hisilicon/hns3: convert comma to semicolon

From: Zheng Yongjun <[email protected]>
Date: Wed, 9 Dec 2020 21:36:30 +0800

> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Zheng Yongjun <[email protected]>

Applied.

2020-12-10 06:05:22

by David Miller

[permalink] [raw]
Subject: Re: [PATCH net-next] hisilicon/hns3: convert comma to semicolon

From: Zheng Yongjun <[email protected]>
Date: Wed, 9 Dec 2020 21:36:30 +0800

> Replace a comma between expression statements by a semicolon.
>
> Signed-off-by: Zheng Yongjun <[email protected]>

Applied.