提交 5f90b9b4 编写于 作者: H Heiko Stübner 提交者: Greg Kroah-Hartman

misc: sram: fix error path in sram_probe

The pool is created thru devm_gen_pool_create, so the call to
gen_pool_destroy is not necessary.
Instead the sram-clock must be turned off again if it exists.
Signed-off-by: NHeiko Stuebner <heiko@sntech.de>
Tested-by: NUlrich Prinz <ulrich.prinz@googlemail.com>
Acked-by: NPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 78049a00
...@@ -68,7 +68,8 @@ static int sram_probe(struct platform_device *pdev) ...@@ -68,7 +68,8 @@ static int sram_probe(struct platform_device *pdev)
ret = gen_pool_add_virt(sram->pool, (unsigned long)virt_base, ret = gen_pool_add_virt(sram->pool, (unsigned long)virt_base,
res->start, size, -1); res->start, size, -1);
if (ret < 0) { if (ret < 0) {
gen_pool_destroy(sram->pool); if (sram->clk)
clk_disable_unprepare(sram->clk);
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册