Skip to content

Commit

Permalink
regulator: Use newly added devres_release() rather than open coding
Browse files Browse the repository at this point in the history
devres_release() will call the destructor for the resource as well as
freeing the devres data.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@ti.com>
  • Loading branch information
Mark Brown committed Jun 3, 2012
1 parent 8b7485e commit 361ff50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/regulator/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 361ff50

Please sign in to comment.