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 <shenlichuan@vivo.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Link: https://lore.kernel.org/r/20241030140315.40562-5-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>pull/1093/head^2
parent
b3d75e9ba0
commit
2e7bb66b55
|
|
@ -115,11 +115,11 @@ static int imx_iim_probe(struct platform_device *pdev)
|
||||||
if (IS_ERR(iim->clk))
|
if (IS_ERR(iim->clk))
|
||||||
return PTR_ERR(iim->clk);
|
return PTR_ERR(iim->clk);
|
||||||
|
|
||||||
cfg.name = "imx-iim",
|
cfg.name = "imx-iim";
|
||||||
cfg.read_only = true,
|
cfg.read_only = true;
|
||||||
cfg.word_size = 1,
|
cfg.word_size = 1;
|
||||||
cfg.stride = 1,
|
cfg.stride = 1;
|
||||||
cfg.reg_read = imx_iim_read,
|
cfg.reg_read = imx_iim_read;
|
||||||
cfg.dev = dev;
|
cfg.dev = dev;
|
||||||
cfg.size = drvdata->nregs;
|
cfg.size = drvdata->nregs;
|
||||||
cfg.priv = iim;
|
cfg.priv = iim;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue