nvmem: snvs_lpgpr: Convert commas to semicolons
Looks like commas were accidentally used where semicolons were supposed to be. Fix that. Cc: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Cc: Heiko Stuebner <heiko@sntech.de> Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Cc: Carlo Caione <carlo@caione.org> Cc: Kevin Hilman <khilman@baylibre.com> Cc: Matthias Brugger <matthias.bgg@gmail.com> Cc: cphealy@gmail.com Cc: linux-kernel@vger.kernel.org Cc: linux-mediatek@lists.infradead.org Cc: linux-rockchip@lists.infradead.org Cc: linux-amlogic@lists.infradead.org Cc: linux-arm-kernel@lists.infradead.org Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e5692efe81
commit
0e189891f6
|
@ -110,12 +110,12 @@ static int snvs_lpgpr_probe(struct platform_device *pdev)
|
|||
cfg->priv = priv;
|
||||
cfg->name = dev_name(dev);
|
||||
cfg->dev = dev;
|
||||
cfg->stride = 4,
|
||||
cfg->word_size = 4,
|
||||
cfg->size = 4,
|
||||
cfg->owner = THIS_MODULE,
|
||||
cfg->reg_read = snvs_lpgpr_read,
|
||||
cfg->reg_write = snvs_lpgpr_write,
|
||||
cfg->stride = 4;
|
||||
cfg->word_size = 4;
|
||||
cfg->size = 4;
|
||||
cfg->owner = THIS_MODULE;
|
||||
cfg->reg_read = snvs_lpgpr_read;
|
||||
cfg->reg_write = snvs_lpgpr_write;
|
||||
|
||||
nvmem = devm_nvmem_register(dev, cfg);
|
||||
|
||||
|
|
Loading…
Reference in New Issue