Commit 230a5a1c authored by Mark Brown's avatar Mark Brown

regulator: Fix double free in devm_regulator_put()

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 8b96de31
......@@ -1461,9 +1461,7 @@ void devm_regulator_put(struct regulator *regulator)
rc = devres_release(regulator->dev, devm_regulator_release,
devm_regulator_match, regulator);
if (rc == 0)
regulator_put(regulator);
else
if (rc != 0)
WARN_ON(rc);
}
EXPORT_SYMBOL_GPL(devm_regulator_put);
......
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