mtd: nand: Fix nanddev_mtd_erase()
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Tue Apr 24 08:59:04 PDT 2018
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=23566c3798f315058862564ab3d01882316054eb
Commit: 23566c3798f315058862564ab3d01882316054eb
Parent: 007b4e8b705a4eff184d567c5a8b496622f9e116
Author: Boris Brezillon <boris.brezillon at bootlin.com>
AuthorDate: Tue Apr 10 17:15:13 2018 +0200
Committer: Boris Brezillon <boris.brezillon at bootlin.com>
CommitDate: Sun Apr 22 19:59:29 2018 +0200
mtd: nand: Fix nanddev_mtd_erase()
Commit e7bfb3fdbde3 ("mtd: Stop updating erase_info->state and calling
mtd_erase_callback()") removed the einfo->state field and the
MTD_ERASE_XXX macros. At the same time, the generic NAND layer was added
and made sure to update the erase info state.
It did not result in a build failure after merging the nand/for-4.17
branch in mtd/next because the generic NAND layer is not selected yet.
Let's fix that before a config option starts selecting MTD_NAND_CORE.
Fixes: e7bfb3fdbde3 ("mtd: Stop updating erase_info->state and calling mtd_erase_callback()")
Signed-off-by: Boris Brezillon <boris.brezillon at bootlin.com>
---
drivers/mtd/nand/core.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/drivers/mtd/nand/core.c b/drivers/mtd/nand/core.c
index d0cd6f8635d7..9c9f8936b63b 100644
--- a/drivers/mtd/nand/core.c
+++ b/drivers/mtd/nand/core.c
@@ -162,7 +162,6 @@ int nanddev_mtd_erase(struct mtd_info *mtd, struct erase_info *einfo)
ret = nanddev_erase(nand, &pos);
if (ret) {
einfo->fail_addr = nanddev_pos_to_offs(nand, &pos);
- einfo->state = MTD_ERASE_FAILED;
return ret;
}
@@ -170,8 +169,6 @@ int nanddev_mtd_erase(struct mtd_info *mtd, struct erase_info *einfo)
nanddev_pos_next_eraseblock(nand, &pos);
}
- einfo->state = MTD_ERASE_DONE;
-
return 0;
}
EXPORT_SYMBOL_GPL(nanddev_mtd_erase);
More information about the linux-mtd-cvs
mailing list