From: Krzysztof Kozlowski Date: Mon, 27 Oct 2014 15:03:42 +0000 (+0100) Subject: regulator: max77686: Make regulator_desc array const X-Git-Tag: v4.14-rc1~6395^2~2^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=73dbdf8ff583ff6693536351973bd24f45ee8668;p=platform%2Fkernel%2Flinux-rpi.git regulator: max77686: Make regulator_desc array const The regulator_register() expects array of 'regulator_desc' to be const. Signed-off-by: Krzysztof Kozlowski Reviewed-by: Javier Martinez Canillas Signed-off-by: Mark Brown --- 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),