diff options
author | Axel Lin <axel.lin@ingics.com> | 2019-01-26 04:39:01 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-01-28 13:20:14 +0100 |
commit | f75b4c5df000b1bd2f16a3ac4fd84b869b1a2d2f (patch) | |
tree | 482043d6935f226f8ad2104e5fb6d7bb098fac48 | |
parent | regulator: lp3971: Constify lp3971_ldo_ops and lp3971_dcdc_ops (diff) | |
download | linux-f75b4c5df000b1bd2f16a3ac4fd84b869b1a2d2f.tar.xz linux-f75b4c5df000b1bd2f16a3ac4fd84b869b1a2d2f.zip |
regulator: lp3972: Constify lp3972_ldo_ops and lp3972_dcdc_ops
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/regulator/lp3972.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/lp3972.c b/drivers/regulator/lp3972.c index ff0c275f902e..fb098198b688 100644 --- a/drivers/regulator/lp3972.c +++ b/drivers/regulator/lp3972.c @@ -305,7 +305,7 @@ static int lp3972_ldo_set_voltage_sel(struct regulator_dev *dev, return ret; } -static struct regulator_ops lp3972_ldo_ops = { +static const struct regulator_ops lp3972_ldo_ops = { .list_voltage = regulator_list_voltage_table, .map_voltage = regulator_map_voltage_ascend, .is_enabled = lp3972_ldo_is_enabled, @@ -386,7 +386,7 @@ static int lp3972_dcdc_set_voltage_sel(struct regulator_dev *dev, LP3972_VOL_CHANGE_FLAG_MASK, 0); } -static struct regulator_ops lp3972_dcdc_ops = { +static const struct regulator_ops lp3972_dcdc_ops = { .list_voltage = regulator_list_voltage_table, .map_voltage = regulator_map_voltage_ascend, .is_enabled = lp3972_dcdc_is_enabled, |