mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 23:48:56 -04:00
regulator: Fix double free in devm_regulator_put()
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user