diff options
author | Jiri Pinkava <jiri.pinkava@vscht.cz> | 2011-04-13 12:26:48 +0200 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2011-05-25 01:53:22 +0100 |
commit | c2aad6d6585c320ed5e111db5e03d27e901dfa81 (patch) | |
tree | 6ff07379db9af9804634e2b894037f7322184006 /drivers | |
parent | ac497c1602555c908c9738fa93b1145f431d1876 (diff) | |
download | kernel_samsung_smdk4412-c2aad6d6585c320ed5e111db5e03d27e901dfa81.zip kernel_samsung_smdk4412-c2aad6d6585c320ed5e111db5e03d27e901dfa81.tar.gz kernel_samsung_smdk4412-c2aad6d6585c320ed5e111db5e03d27e901dfa81.tar.bz2 |
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')
-rw-r--r-- | drivers/mtd/nand/nand_base.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index c54a4cb..bc1c2e6 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; |