aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZheng Yongjun <zhengyongjun3@huawei.com>2020-12-11 16:49:02 +0800
committerLinus Walleij <linus.walleij@linaro.org>2021-01-04 15:31:51 +0100
commit502045d91a313533d5daa20c3108507c27e79a37 (patch)
tree1d16d2529e84a5c6312dc08e40e645b884284b65
parentpinctrl: mediatek: moore: convert comma to semicolon (diff)
downloadlinux-dev-502045d91a313533d5daa20c3108507c27e79a37.tar.xz
linux-dev-502045d91a313533d5daa20c3108507c27e79a37.zip
pinctrl: ti-iodelay: convert comma to semicolon
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>
-rw-r--r--drivers/pinctrl/ti/pinctrl-ti-iodelay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/ti/pinctrl-ti-iodelay.c b/drivers/pinctrl/ti/pinctrl-ti-iodelay.c
index cfb924228d87..ae91559bd4a1 100644
--- a/drivers/pinctrl/ti/pinctrl-ti-iodelay.c
+++ b/drivers/pinctrl/ti/pinctrl-ti-iodelay.c
@@ -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);