diff options
| author | Krzysztof Kozlowski <krzk@kernel.org> | 2017-03-11 14:01:19 -0500 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2017-03-13 12:46:21 -0400 |
| commit | a08904fdb8b5be2334f3873cbeea4bc004528d02 (patch) | |
| tree | 0e12ea37017bc18affee9414270796a87da515ec | |
| parent | 0f6ce809a518d736232de5f496b957733b1b4724 (diff) | |
regulator: max77693: Constify regulator_ops
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>
| -rw-r--r-- | drivers/regulator/max77693-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/max77693-regulator.c b/drivers/regulator/max77693-regulator.c index cfbb9512e486..2e7c55058c2b 100644 --- a/drivers/regulator/max77693-regulator.c +++ b/drivers/regulator/max77693-regulator.c | |||
| @@ -150,7 +150,7 @@ static struct regulator_ops max77693_safeout_ops = { | |||
| 150 | .set_voltage_sel = regulator_set_voltage_sel_regmap, | 150 | .set_voltage_sel = regulator_set_voltage_sel_regmap, |
| 151 | }; | 151 | }; |
| 152 | 152 | ||
| 153 | static struct regulator_ops max77693_charger_ops = { | 153 | static const struct regulator_ops max77693_charger_ops = { |
| 154 | .is_enabled = regulator_is_enabled_regmap, | 154 | .is_enabled = regulator_is_enabled_regmap, |
| 155 | .enable = regulator_enable_regmap, | 155 | .enable = regulator_enable_regmap, |
| 156 | .disable = regulator_disable_regmap, | 156 | .disable = regulator_disable_regmap, |
