diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2015-02-03 11:58:15 -0600 |
---|---|---|
committer | Scott Wood <scottwood@freescale.com> | 2015-03-30 23:24:39 -0500 |
commit | 073adf987e8251ad934fcac4fd1bf20d4f34f96e (patch) | |
tree | 119c31a7837186ee411da308b04be28d511ad81a /include/linux | |
parent | 9ac71f112eb3cffc42e012fcdf5009e5b3b01a1d (diff) | |
download | u-boot-imx-073adf987e8251ad934fcac4fd1bf20d4f34f96e.zip u-boot-imx-073adf987e8251ad934fcac4fd1bf20d4f34f96e.tar.gz u-boot-imx-073adf987e8251ad934fcac4fd1bf20d4f34f96e.tar.bz2 |
nand: Remove CONFIG_MTD_NAND_VERIFY_WRITE
The CONFIG_MTD_NAND_VERIFY_WRITE has been removed from Linux for some
time and a more generic method of NAND verification now exists in U-Boot.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Tested-by: Heiko Schocher <hs@denx.de>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mtd/nand.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 8438490..bc927ec 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -678,11 +678,6 @@ struct nand_chip { void (*write_byte)(struct mtd_info *mtd, uint8_t byte); void (*write_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); void (*read_buf)(struct mtd_info *mtd, uint8_t *buf, int len); -#ifdef __UBOOT__ -#if defined(CONFIG_MTD_NAND_VERIFY_WRITE) - int (*verify_buf)(struct mtd_info *mtd, const uint8_t *buf, int len); -#endif -#endif void (*select_chip)(struct mtd_info *mtd, int chip); int (*block_bad)(struct mtd_info *mtd, loff_t ofs, int getchip); int (*block_markbad)(struct mtd_info *mtd, loff_t ofs); |