diff options
author | Xiubo Li <Li.Xiubo@freescale.com> | 2014-01-14 22:16:35 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-07 18:10:19 -0500 |
commit | 590eca1e9f10b7ddf97718c6c4c12c73d0fd0083 (patch) | |
tree | 42a5f0b24b7fe0e70a06f40a52481a64af72fb69 | |
parent | 5baaf71fb029f1256532b82aab90169615b94a7d (diff) |
misc: sram: cleanup the code
Since the devm_gen_pool_create() is used, so the gen_pool_destroy()
here is redundant.
Signed-off-by: Xiubo Li <Li.Xiubo@freescale.com>
Acked-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/sram.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/misc/sram.c b/drivers/misc/sram.c index afe66571ce0b..e3e421d97ad4 100644 --- a/drivers/misc/sram.c +++ b/drivers/misc/sram.c | |||
@@ -87,8 +87,6 @@ static int sram_remove(struct platform_device *pdev) | |||
87 | if (gen_pool_avail(sram->pool) < gen_pool_size(sram->pool)) | 87 | if (gen_pool_avail(sram->pool) < gen_pool_size(sram->pool)) |
88 | dev_dbg(&pdev->dev, "removed while SRAM allocated\n"); | 88 | dev_dbg(&pdev->dev, "removed while SRAM allocated\n"); |
89 | 89 | ||
90 | gen_pool_destroy(sram->pool); | ||
91 | |||
92 | if (sram->clk) | 90 | if (sram->clk) |
93 | clk_disable_unprepare(sram->clk); | 91 | clk_disable_unprepare(sram->clk); |
94 | 92 | ||