Commit 401861f5 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

regulator: twl: Constify regulator_ops

These regulator_ops variables never need to be modified, make them const so
compiler can put them to .rodata.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 55c083d8
...@@ -392,7 +392,7 @@ static int twl4030ldo_get_voltage_sel(struct regulator_dev *rdev) ...@@ -392,7 +392,7 @@ static int twl4030ldo_get_voltage_sel(struct regulator_dev *rdev)
return vsel; return vsel;
} }
static struct regulator_ops twl4030ldo_ops = { static const struct regulator_ops twl4030ldo_ops = {
.list_voltage = twl4030ldo_list_voltage, .list_voltage = twl4030ldo_list_voltage,
.set_voltage_sel = twl4030ldo_set_voltage_sel, .set_voltage_sel = twl4030ldo_set_voltage_sel,
...@@ -430,14 +430,14 @@ static int twl4030smps_get_voltage(struct regulator_dev *rdev) ...@@ -430,14 +430,14 @@ static int twl4030smps_get_voltage(struct regulator_dev *rdev)
return vsel * 12500 + 600000; return vsel * 12500 + 600000;
} }
static struct regulator_ops twl4030smps_ops = { static const struct regulator_ops twl4030smps_ops = {
.set_voltage = twl4030smps_set_voltage, .set_voltage = twl4030smps_set_voltage,
.get_voltage = twl4030smps_get_voltage, .get_voltage = twl4030smps_get_voltage,
}; };
/*----------------------------------------------------------------------*/ /*----------------------------------------------------------------------*/
static struct regulator_ops twl4030fixed_ops = { static const struct regulator_ops twl4030fixed_ops = {
.list_voltage = regulator_list_voltage_linear, .list_voltage = regulator_list_voltage_linear,
.enable = twl4030reg_enable, .enable = twl4030reg_enable,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment