Skip to content

Commit 2819569

Browse files
Zheng Yongjunbroonie
authored andcommitted
regulator: mc13892-regulator: 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/20201211084510.2264-1-zhengyongjun3@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 6a6939d commit 2819569

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/regulator/mc13892-regulator.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,8 +582,8 @@ static int mc13892_regulator_probe(struct platform_device *pdev)
582582
/* update mc13892_vcam ops */
583583
memcpy(&mc13892_vcam_ops, mc13892_regulators[MC13892_VCAM].desc.ops,
584584
sizeof(struct regulator_ops));
585-
mc13892_vcam_ops.set_mode = mc13892_vcam_set_mode,
586-
mc13892_vcam_ops.get_mode = mc13892_vcam_get_mode,
585+
mc13892_vcam_ops.set_mode = mc13892_vcam_set_mode;
586+
mc13892_vcam_ops.get_mode = mc13892_vcam_get_mode;
587587
mc13892_regulators[MC13892_VCAM].desc.ops = &mc13892_vcam_ops;
588588

589589
mc13xxx_data = mc13xxx_parse_regulators_dt(pdev, mc13892_regulators,

0 commit comments

Comments
 (0)