From: Zheng Yongjun Date: Wed, 9 Dec 2020 13:36:30 +0000 (+0800) Subject: hisilicon/hns3: convert comma to semicolon X-Git-Tag: howlett/maple_spf/20210104~359^2~74 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=474d8feffb31b7f798be0eeab2f5d95557bd79d7;p=users%2Fjedix%2Flinux-maple.git hisilicon/hns3: convert comma to semicolon Replace a comma between expression statements by a semicolon. Signed-off-by: Zheng Yongjun 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 a70f44d6e396..92cd4446a82e 100644 --- a/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c +++ b/drivers/net/ethernet/hisilicon/hns3/hns3pf/hclge_main.c @@ -5010,7 +5010,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;