Commit 03ffbf9c authored by Claudiu Beznea's avatar Claudiu Beznea Committed by Mark Brown

regulator: act8945a-regulator: fix line over 80 chars warning

Fix line over 80 chars checkpatch.pl warning.
Signed-off-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7482d6ec
...@@ -310,7 +310,8 @@ static int act8945a_pmic_probe(struct platform_device *pdev) ...@@ -310,7 +310,8 @@ static int act8945a_pmic_probe(struct platform_device *pdev)
config.dev->of_node = pdev->dev.parent->of_node; config.dev->of_node = pdev->dev.parent->of_node;
config.driver_data = act8945a; config.driver_data = act8945a;
for (i = 0; i < num_regulators; i++) { for (i = 0; i < num_regulators; i++) {
rdev = devm_regulator_register(&pdev->dev, &regulators[i], &config); rdev = devm_regulator_register(&pdev->dev, &regulators[i],
&config);
if (IS_ERR(rdev)) { if (IS_ERR(rdev)) {
dev_err(&pdev->dev, dev_err(&pdev->dev,
"failed to register %s regulator\n", "failed to register %s regulator\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment