OSDN Git Service

regulator: max77686: Initialize opmode explicitly to normal mode
authorKrzysztof Kozlowski <k.kozlowski@samsung.com>
Tue, 4 Nov 2014 08:49:42 +0000 (09:49 +0100)
committerMark Brown <broonie@kernel.org>
Tue, 4 Nov 2014 20:41:51 +0000 (20:41 +0000)
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>
drivers/regulator/max77686.c

index 27c5f45..28f4eab 100644 (file)
@@ -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)) {