Skip to content

Commit 2e7bb66

Browse files
Shen Lichuangregkh
authored andcommitted
nvmem: imx-iim: Convert comma to semicolon
To ensure code clarity and prevent potential errors, it's advisable to employ the ';' as a statement separator, except when ',' are intentionally used for specific purposes. Signed-off-by: Shen Lichuan <[email protected]> Signed-off-by: Srinivas Kandagatla <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent b3d75e9 commit 2e7bb66

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

drivers/nvmem/imx-iim.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ static int imx_iim_probe(struct platform_device *pdev)
115115
if (IS_ERR(iim->clk))
116116
return PTR_ERR(iim->clk);
117117

118-
cfg.name = "imx-iim",
119-
cfg.read_only = true,
120-
cfg.word_size = 1,
121-
cfg.stride = 1,
122-
cfg.reg_read = imx_iim_read,
118+
cfg.name = "imx-iim";
119+
cfg.read_only = true;
120+
cfg.word_size = 1;
121+
cfg.stride = 1;
122+
cfg.reg_read = imx_iim_read;
123123
cfg.dev = dev;
124124
cfg.size = drvdata->nregs;
125125
cfg.priv = iim;

0 commit comments

Comments
 (0)