aboutsummaryrefslogtreecommitdiff
path: root/drivers/regulator/tps65217-regulator.c
diff options
context:
space:
mode:
authorGravatar Axel Lin <axel.lin@ingics.com> 2019-03-24 14:00:05 +0800
committerGravatar Mark Brown <broonie@kernel.org> 2019-03-25 12:21:29 +0000
commit2c33b50e6201881709b092b9b8566ae4b6dfc3ab (patch)
tree20a82a50270381758958101ad61aef69a2e9d043 /drivers/regulator/tps65217-regulator.c
parentregulator: tps65218: Constify regulator_ops (diff)
downloadlinux-2c33b50e6201881709b092b9b8566ae4b6dfc3ab.tar.gz
linux-2c33b50e6201881709b092b9b8566ae4b6dfc3ab.tar.bz2
linux-2c33b50e6201881709b092b9b8566ae4b6dfc3ab.zip
regulator: tps65217: 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: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/tps65217-regulator.c')
-rw-r--r--drivers/regulator/tps65217-regulator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/tps65217-regulator.c b/drivers/regulator/tps65217-regulator.c
index ada62f792258..b0f5d8dcd741 100644
--- a/drivers/regulator/tps65217-regulator.c
+++ b/drivers/regulator/tps65217-regulator.c
@@ -149,7 +149,7 @@ static int tps65217_pmic_set_suspend_disable(struct regulator_dev *dev)
}
/* Operations permitted on DCDCx, LDO2, LDO3 and LDO4 */
-static struct regulator_ops tps65217_pmic_ops = {
+static const struct regulator_ops tps65217_pmic_ops = {
.is_enabled = regulator_is_enabled_regmap,
.enable = tps65217_pmic_enable,
.disable = tps65217_pmic_disable,
@@ -162,7 +162,7 @@ static struct regulator_ops tps65217_pmic_ops = {
};
/* Operations permitted on LDO1 */
-static struct regulator_ops tps65217_pmic_ldo1_ops = {
+static const struct regulator_ops tps65217_pmic_ldo1_ops = {
.is_enabled = regulator_is_enabled_regmap,
.enable = tps65217_pmic_enable,
.disable = tps65217_pmic_disable,