aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/sram.c
diff options
context:
space:
mode:
authorHeiko Stübner <[email protected]>2013-07-05 12:40:53 +0000
committerGreg Kroah-Hartman <[email protected]>2013-07-25 05:54:50 +0000
commit5f90b9b484938f7466e25cd5506e86ebf9dbcd17 (patch)
tree1d59d6b520b3dac565ebfd37837f5cacc72675d5 /drivers/misc/sram.c
parentdrivers/misc: don't use devm_pinctrl_get_select_default() in probe (diff)
downloadkernel-5f90b9b484938f7466e25cd5506e86ebf9dbcd17.tar.gz
kernel-5f90b9b484938f7466e25cd5506e86ebf9dbcd17.zip
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: Heiko Stuebner <[email protected]> Tested-by: Ulrich Prinz <[email protected]> Acked-by: Philipp Zabel <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
Diffstat (limited to 'drivers/misc/sram.c')
-rw-r--r--drivers/misc/sram.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/misc/sram.c b/drivers/misc/sram.c
index d87cc91bc016..afe66571ce0b 100644
--- a/drivers/misc/sram.c
+++ b/drivers/misc/sram.c
@@ -68,7 +68,8 @@ static int sram_probe(struct platform_device *pdev)
ret = gen_pool_add_virt(sram->pool, (unsigned long)virt_base,
res->start, size, -1);
if (ret < 0) {
- gen_pool_destroy(sram->pool);
+ if (sram->clk)
+ clk_disable_unprepare(sram->clk);
return ret;
}