Commit 538926ed authored by Mark Brown's avatar Mark Brown Committed by Greg Kroah-Hartman

regulator: core: Release regulator-regulator supplies on error

commit e81dba85 upstream.

If we fail while registering a regulator make sure we release the supply
for the regulator if there is one.
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4c68b0f8
......@@ -2971,6 +2971,8 @@ struct regulator_dev *regulator_register(struct regulator_desc *regulator_desc,
unset_regulator_supplies(rdev);
scrub:
if (rdev->supply)
regulator_put(rdev->supply);
kfree(rdev->constraints);
device_unregister(&rdev->dev);
/* device core frees rdev */
......
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