pinctrl: mediatek: moore: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Fri, 11 Dec 2020 08:48:01 +0000 (16:48 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 4 Jan 2021 14:30:26 +0000 (15:30 +0100)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <zhengyongjun3@huawei.com>
Link: https://lore.kernel.org/r/20201211084801.2425-1-zhengyongjun3@huawei.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/mediatek/pinctrl-moore.c

index 5e00f93ac998b39eb8c71b38186683b4f0d56ac3..0fa7de43bc4c885be8651ad23afe0db02d7c97d0 100644 (file)
@@ -514,8 +514,8 @@ static int mtk_build_gpiochip(struct mtk_pinctrl *hw, struct device_node *np)
        chip->direction_output  = mtk_gpio_direction_output;
        chip->get               = mtk_gpio_get;
        chip->set               = mtk_gpio_set;
-       chip->to_irq            = mtk_gpio_to_irq,
-       chip->set_config        = mtk_gpio_set_config,
+       chip->to_irq            = mtk_gpio_to_irq;
+       chip->set_config        = mtk_gpio_set_config;
        chip->base              = -1;
        chip->ngpio             = hw->soc->npins;
        chip->of_node           = np;