summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
authorJiri Pinkava2011-04-13 12:26:48 +0200
committerDavid Woodhouse2011-05-25 02:53:22 +0200
commitc2aad6d6585c320ed5e111db5e03d27e901dfa81 (patch)
tree6ff07379db9af9804634e2b894037f7322184006 /drivers/mtd/nand
parentmtd: nand: fix S3C NAND clock stop (diff)
downloadkernel-qcow2-linux-c2aad6d6585c320ed5e111db5e03d27e901dfa81.tar.gz
kernel-qcow2-linux-c2aad6d6585c320ed5e111db5e03d27e901dfa81.tar.xz
kernel-qcow2-linux-c2aad6d6585c320ed5e111db5e03d27e901dfa81.zip
mtd: nand: remove doubled chip deselection on (un)lock
Chip deselection is already done in nand_release_device. So only duplicate code. Signed-off-by: Jiri Pinkava <jiri.pinkava@vscht.cz> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/nand_base.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index c54a4cbac6bc..bc1c2e6ae4a4 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -976,9 +976,6 @@ int nand_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
ret = __nand_unlock(mtd, ofs, len, 0);
out:
- /* de-select the NAND device */
- chip->select_chip(mtd, -1);
-
nand_release_device(mtd);
return ret;
@@ -1046,9 +1043,6 @@ int nand_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
ret = __nand_unlock(mtd, ofs, len, 0x1);
out:
- /* de-select the NAND device */
- chip->select_chip(mtd, -1);
-
nand_release_device(mtd);
return ret;