]> git.samba.org - sfrench/cifs-2.6.git/commitdiff
regulator: s2mpa01: Constify regulator_ops
authorKrzysztof Kozlowski <krzk@kernel.org>
Sat, 11 Mar 2017 19:01:21 +0000 (21:01 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 13 Mar 2017 16:46:28 +0000 (16:46 +0000)
Static struct regulator_ops is not modified so can be made const for
code safeness.

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Reviewed-by: Chanwoo Choi <cw00.choi@samsung.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/s2mpa01.c

index 92f88753bfed274fa5acbec2d2e37dda22c43380..dc2105c619a65a301489daf56b36f0cd2d582942 100644 (file)
@@ -212,7 +212,7 @@ static int s2mpa01_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay)
                                  1 << enable_shift, 0);
 }
 
-static struct regulator_ops s2mpa01_ldo_ops = {
+static const struct regulator_ops s2mpa01_ldo_ops = {
        .list_voltage           = regulator_list_voltage_linear,
        .map_voltage            = regulator_map_voltage_linear,
        .is_enabled             = regulator_is_enabled_regmap,
@@ -223,7 +223,7 @@ static struct regulator_ops s2mpa01_ldo_ops = {
        .set_voltage_time_sel   = regulator_set_voltage_time_sel,
 };
 
-static struct regulator_ops s2mpa01_buck_ops = {
+static const struct regulator_ops s2mpa01_buck_ops = {
        .list_voltage           = regulator_list_voltage_linear,
        .map_voltage            = regulator_map_voltage_linear,
        .is_enabled             = regulator_is_enabled_regmap,