diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2014-10-27 16:03:42 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-10-28 00:38:34 +0000 |
commit | 73dbdf8ff583ff6693536351973bd24f45ee8668 (patch) | |
tree | 2b6b73cd63bbab6df0ec6afce6955fcb9d7ff08c /drivers/regulator/max77686.c | |
parent | f114040e3ea6e07372334ade75d1ee0775c355e1 (diff) | |
download | op-kernel-dev-73dbdf8ff583ff6693536351973bd24f45ee8668.zip op-kernel-dev-73dbdf8ff583ff6693536351973bd24f45ee8668.tar.gz |
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>
Diffstat (limited to 'drivers/regulator/max77686.c')
-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 ef1af2d..0d103ba 100644 --- a/drivers/regulator/max77686.c +++ b/drivers/regulator/max77686.c @@ -350,7 +350,7 @@ static struct regulator_ops max77686_buck_dvs_ops = { << MAX77686_OPMODE_BUCK234_SHIFT, \ } -static struct regulator_desc regulators[] = { +static const struct regulator_desc regulators[] = { regulator_desc_ldo1_low(1), regulator_desc_ldo_low(2), regulator_desc_ldo(3), |