diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2014-10-27 11:03:42 -0400 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-27 20:38:34 -0400 |
commit | 73dbdf8ff583ff6693536351973bd24f45ee8668 (patch) | |
tree | 2b6b73cd63bbab6df0ec6afce6955fcb9d7ff08c | |
parent | f114040e3ea6e07372334ade75d1ee0775c355e1 (diff) |
regulator: max77686: Make regulator_desc array const
The regulator_register() expects array of 'regulator_desc' to be const.
Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Reviewed-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/regulator/max77686.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/max77686.c b/drivers/regulator/max77686.c index ef1af2debbd2..0d103ba1d462 100644 --- a/drivers/regulator/max77686.c +++ b/drivers/regulator/max77686.c | |||
@@ -350,7 +350,7 @@ static struct regulator_ops max77686_buck_dvs_ops = { | |||
350 | << MAX77686_OPMODE_BUCK234_SHIFT, \ | 350 | << MAX77686_OPMODE_BUCK234_SHIFT, \ |
351 | } | 351 | } |
352 | 352 | ||
353 | static struct regulator_desc regulators[] = { | 353 | static const struct regulator_desc regulators[] = { |
354 | regulator_desc_ldo1_low(1), | 354 | regulator_desc_ldo1_low(1), |
355 | regulator_desc_ldo_low(2), | 355 | regulator_desc_ldo_low(2), |
356 | regulator_desc_ldo(3), | 356 | regulator_desc_ldo(3), |