Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 361ff501 authored by Mark Brown's avatar Mark Brown
Browse files

regulator: Use newly added devres_release() rather than open coding



devres_release() will call the destructor for the resource as well as
freeing the devres data.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
parent 8b7485ef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1459,7 +1459,7 @@ void devm_regulator_put(struct regulator *regulator)
{
	int rc;

	rc = devres_destroy(regulator->dev, devm_regulator_release,
	rc = devres_release(regulator->dev, devm_regulator_release,
			    devm_regulator_match, regulator);
	if (rc == 0)
		regulator_put(regulator);