diff options
| author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2009-11-02 09:40:48 -0500 |
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-11-30 04:47:42 -0500 |
| commit | 6eb4feffb9d619a44fe434e777ef095a29cf4759 (patch) | |
| tree | b23ead3aecc88dffc0c41c466d518ccfddd23db4 | |
| parent | d6587feaf0ed7511b3d0b52bcaae8ecd0949d3af (diff) | |
mtd: txx9ndfmc: Use nand_release to free resources
This patch fixes memory leak on chip->bbt and chip->buffers.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
| -rw-r--r-- | drivers/mtd/nand/txx9ndfmc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/nand/txx9ndfmc.c b/drivers/mtd/nand/txx9ndfmc.c index 73af8324d0d0..863513c3b69a 100644 --- a/drivers/mtd/nand/txx9ndfmc.c +++ b/drivers/mtd/nand/txx9ndfmc.c | |||
| @@ -429,11 +429,10 @@ static int __exit txx9ndfmc_remove(struct platform_device *dev) | |||
| 429 | chip = mtd->priv; | 429 | chip = mtd->priv; |
| 430 | txx9_priv = chip->priv; | 430 | txx9_priv = chip->priv; |
| 431 | 431 | ||
| 432 | nand_release(mtd); | ||
| 432 | #ifdef CONFIG_MTD_PARTITIONS | 433 | #ifdef CONFIG_MTD_PARTITIONS |
| 433 | del_mtd_partitions(mtd); | ||
| 434 | kfree(drvdata->parts[i]); | 434 | kfree(drvdata->parts[i]); |
| 435 | #endif | 435 | #endif |
| 436 | del_mtd_device(mtd); | ||
| 437 | kfree(txx9_priv->mtdname); | 436 | kfree(txx9_priv->mtdname); |
| 438 | kfree(txx9_priv); | 437 | kfree(txx9_priv); |
| 439 | } | 438 | } |
