regulator: vexpress: Constify regulator_ops
authorAxel Lin <axel.lin@ingics.com>
Wed, 10 Apr 2019 16:19:37 +0000 (00:19 +0800)
committerMark Brown <broonie@kernel.org>
Thu, 11 Apr 2019 11:17:05 +0000 (12:17 +0100)
vexpress_regulator_ops_ro and vexpress_regulator_ops are never changed,
make them const.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Sudeep Holla <sudeep.holla@arm.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/vexpress-regulator.c

index c810cbb..ca4230f 100644 (file)
@@ -46,11 +46,11 @@ static int vexpress_regulator_set_voltage(struct regulator_dev *regdev,
        return regmap_write(reg->regmap, 0, min_uV);
 }
 
-static struct regulator_ops vexpress_regulator_ops_ro = {
+static const struct regulator_ops vexpress_regulator_ops_ro = {
        .get_voltage = vexpress_regulator_get_voltage,
 };
 
-static struct regulator_ops vexpress_regulator_ops = {
+static const struct regulator_ops vexpress_regulator_ops = {
        .get_voltage = vexpress_regulator_get_voltage,
        .set_voltage = vexpress_regulator_set_voltage,
 };