summaryrefslogtreecommitdiffstats
path: root/drivers/regulator/max77686.c
diff options
context:
space:
mode:
authorKrzysztof Kozlowski2014-11-04 09:49:42 +0100
committerMark Brown2014-11-04 21:41:51 +0100
commit4524df83c7fc4f44702099a2db7b3cc938eb111f (patch)
treeaf6419c860d2270ea361b7af72df2eb83b4e8728 /drivers/regulator/max77686.c
parentregulator: max77686: Consistently index opmode array by rdev id (diff)
downloadkernel-qcow2-linux-4524df83c7fc4f44702099a2db7b3cc938eb111f.tar.gz
kernel-qcow2-linux-4524df83c7fc4f44702099a2db7b3cc938eb111f.tar.xz
kernel-qcow2-linux-4524df83c7fc4f44702099a2db7b3cc938eb111f.zip
regulator: max77686: Initialize opmode explicitly to normal mode
Minor nit: Initialize the opmode for each regulator to normal mode in a readable explicit way. Signed-off-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Suggested-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk> 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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/regulator/max77686.c b/drivers/regulator/max77686.c
index 27c5f4556044..28f4eab82a09 100644
--- a/drivers/regulator/max77686.c
+++ b/drivers/regulator/max77686.c
@@ -519,8 +519,7 @@ static int max77686_pmic_probe(struct platform_device *pdev)
config.init_data = pdata->regulators[i].initdata;
config.of_node = pdata->regulators[i].of_node;
- max77686->opmode[id] = regulators[i].enable_mask >>
- max77686_get_opmode_shift(id);
+ max77686->opmode[id] = MAX77686_NORMAL;
rdev = devm_regulator_register(&pdev->dev,
&regulators[i], &config);
if (IS_ERR(rdev)) {