1
0
Fork 0

ARM: 7537/1: clk: Fix release in devm_clk_put()

Surprisingly devres_destroy() doesn't call the destructor for the
resource it is destroying, use the newly added devres_release() instead
to fix this.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
hifive-unleashed-5.1
Mark Brown 2012-09-19 12:43:21 +01:00 committed by Russell King
parent 8ef997b67f
commit 20332ff376
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ void devm_clk_put(struct device *dev, struct clk *clk)
{
int ret;
ret = devres_destroy(dev, devm_clk_release, devm_clk_match, clk);
ret = devres_release(dev, devm_clk_release, devm_clk_match, clk);
WARN_ON(ret);
}