diff options
author | Claudiu Beznea <claudiu.beznea@microchip.com> | 2018-12-11 15:56:45 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-12-12 16:59:19 +0000 |
commit | 03ffbf9c0891caf8723c81967ceea5faf5d099d5 (patch) | |
tree | 54aa2bab32ab729a46edcb4d1abb62e57676103f /drivers/regulator | |
parent | 7482d6ecc68e16a2b8272b0c9cbcc5c50edf013f (diff) | |
download | blackbird-obmc-linux-03ffbf9c0891caf8723c81967ceea5faf5d099d5.tar.gz blackbird-obmc-linux-03ffbf9c0891caf8723c81967ceea5faf5d099d5.zip |
regulator: act8945a-regulator: fix line over 80 chars warning
Fix line over 80 chars checkpatch.pl warning.
Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/act8945a-regulator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/regulator/act8945a-regulator.c b/drivers/regulator/act8945a-regulator.c index f37d1a860407..f4d60743efb3 100644 --- a/drivers/regulator/act8945a-regulator.c +++ b/drivers/regulator/act8945a-regulator.c @@ -310,7 +310,8 @@ static int act8945a_pmic_probe(struct platform_device *pdev) config.dev->of_node = pdev->dev.parent->of_node; config.driver_data = act8945a; for (i = 0; i < num_regulators; i++) { - rdev = devm_regulator_register(&pdev->dev, ®ulators[i], &config); + rdev = devm_regulator_register(&pdev->dev, ®ulators[i], + &config); if (IS_ERR(rdev)) { dev_err(&pdev->dev, "failed to register %s regulator\n", |