aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiu Shuo <[email protected]>2011-06-28 09:50:51 +0800
committerArtem Bityutskiy <[email protected]>2011-09-11 15:02:14 +0300
commit57b078a09bf0ab3f0babcfe6ecb2ac226d9178be (patch)
tree33cc32cff12c478f7d4fc8e184430f388f69b491
parentb4ca74738ab6c9ed8190b06cd7bf785dc98c640e (diff)
mtd: nand: don't free the global data too early
The global data fsl_lbc_ctrl_dev->nand don't have to be freed in fsl_elbc_chip_remove(). The right place to do that is in fsl_elbc_nand_remove() if elbc_fcm_ctrl->counter is zero. Signed-off-by: Liu Shuo <[email protected]> Signed-off-by: Artem Bityutskiy <[email protected]>
-rw-r--r--drivers/mtd/nand/fsl_elbc_nand.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mtd/nand/fsl_elbc_nand.c b/drivers/mtd/nand/fsl_elbc_nand.c
index 915b4a4c06c2..3c2f03c55cac 100644
--- a/drivers/mtd/nand/fsl_elbc_nand.c
+++ b/drivers/mtd/nand/fsl_elbc_nand.c
@@ -829,7 +829,6 @@ static int fsl_elbc_chip_remove(struct fsl_elbc_mtd *priv)
elbc_fcm_ctrl->chips[priv->bank] = NULL;
kfree(priv);
- kfree(elbc_fcm_ctrl);
return 0;
}