diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-06-03 01:15:30 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@intel.com> | 2011-09-11 08:01:59 -0400 |
commit | 82e023ab4e144da7f83fe7e6c93a09be2f30ff07 (patch) | |
tree | 67408171675ff33e0dab84e90ef13509e5a0bcf0 /drivers/mtd/nand/fsmc_nand.c | |
parent | 1a3591920e5100ba112a19e10a09ce7a5da1ab23 (diff) |
mtd: fsmc_nand: fix a memory leak
In fsmc_nand_remove, we should call nand_release instead of
mtd_device_unregister to properly free bad block table memory
and bad block descriptor memory.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/nand/fsmc_nand.c')
-rw-r--r-- | drivers/mtd/nand/fsmc_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/fsmc_nand.c b/drivers/mtd/nand/fsmc_nand.c index e9b275ac381c..8a5f1aa2b286 100644 --- a/drivers/mtd/nand/fsmc_nand.c +++ b/drivers/mtd/nand/fsmc_nand.c | |||
@@ -822,7 +822,7 @@ static int fsmc_nand_remove(struct platform_device *pdev) | |||
822 | platform_set_drvdata(pdev, NULL); | 822 | platform_set_drvdata(pdev, NULL); |
823 | 823 | ||
824 | if (host) { | 824 | if (host) { |
825 | mtd_device_unregister(&host->mtd); | 825 | nand_release(&host->mtd); |
826 | clk_disable(host->clk); | 826 | clk_disable(host->clk); |
827 | clk_put(host->clk); | 827 | clk_put(host->clk); |
828 | 828 | ||