diff options
author | Krzysztof Kozlowski <k.kozlowski@samsung.com> | 2014-11-04 09:49:42 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-11-04 20:41:51 +0000 |
commit | 4524df83c7fc4f44702099a2db7b3cc938eb111f (patch) | |
tree | af6419c860d2270ea361b7af72df2eb83b4e8728 /drivers/regulator/max77686.c | |
parent | eca29da9a2e832936c9077b8e69adb4f4b22b0d5 (diff) | |
download | talos-obmc-linux-4524df83c7fc4f44702099a2db7b3cc938eb111f.tar.gz talos-obmc-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.c | 3 |
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, ®ulators[i], &config); if (IS_ERR(rdev)) { |