pinctrl: ti-iodelay: convert comma to semicolon
authorZheng Yongjun <zhengyongjun3@huawei.com>
Fri, 11 Dec 2020 08:49:02 +0000 (16:49 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 4 Jan 2021 14:31:51 +0000 (15:31 +0100)
Replace a comma between expression statements by a semicolon.

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

index cfb9242..ae91559 100644 (file)
@@ -704,7 +704,7 @@ static void ti_iodelay_pinconf_group_dbg_show(struct pinctrl_dev *pctldev,
                u32 reg = 0;
 
                cfg = &group->cfg[i];
-               regmap_read(iod->regmap, cfg->offset, &reg),
+               regmap_read(iod->regmap, cfg->offset, &reg);
                        seq_printf(s, "\n\t0x%08x = 0x%08x (%3d, %3d)",
                                   cfg->offset, reg, cfg->a_delay,
                                   cfg->g_delay);