]> Git Repo - J-linux.git/commitdiff
regulator: mc13892-regulator: convert comma to semicolon
authorZheng Yongjun <[email protected]>
Fri, 11 Dec 2020 08:45:10 +0000 (16:45 +0800)
committerMark Brown <[email protected]>
Fri, 11 Dec 2020 13:23:07 +0000 (13:23 +0000)
Replace a comma between expression statements by a semicolon.

Signed-off-by: Zheng Yongjun <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
drivers/regulator/mc13892-regulator.c

index a731e826a0374e4f13476c59ac9c6d0011f75db0..5221f7a9df91c1644f986bcdf57b4af520516f50 100644 (file)
@@ -582,8 +582,8 @@ static int mc13892_regulator_probe(struct platform_device *pdev)
        /* update mc13892_vcam ops */
        memcpy(&mc13892_vcam_ops, mc13892_regulators[MC13892_VCAM].desc.ops,
                                                sizeof(struct regulator_ops));
-       mc13892_vcam_ops.set_mode = mc13892_vcam_set_mode,
-       mc13892_vcam_ops.get_mode = mc13892_vcam_get_mode,
+       mc13892_vcam_ops.set_mode = mc13892_vcam_set_mode;
+       mc13892_vcam_ops.get_mode = mc13892_vcam_get_mode;
        mc13892_regulators[MC13892_VCAM].desc.ops = &mc13892_vcam_ops;
 
        mc13xxx_data = mc13xxx_parse_regulators_dt(pdev, mc13892_regulators,
This page took 0.056451 seconds and 4 git commands to generate.