mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-28 16:52:18 +00:00
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>
This commit is contained in:
parent
b3d75e9ba0
commit
2e7bb66b55
@ -115,11 +115,11 @@ static int imx_iim_probe(struct platform_device *pdev)
|
||||
if (IS_ERR(iim->clk))
|
||||
return PTR_ERR(iim->clk);
|
||||
|
||||
cfg.name = "imx-iim",
|
||||
cfg.read_only = true,
|
||||
cfg.word_size = 1,
|
||||
cfg.stride = 1,
|
||||
cfg.reg_read = imx_iim_read,
|
||||
cfg.name = "imx-iim";
|
||||
cfg.read_only = true;
|
||||
cfg.word_size = 1;
|
||||
cfg.stride = 1;
|
||||
cfg.reg_read = imx_iim_read;
|
||||
cfg.dev = dev;
|
||||
cfg.size = drvdata->nregs;
|
||||
cfg.priv = iim;
|
||||
|
Loading…
Reference in New Issue
Block a user