diff options
author | Thomas Gleixner <tglx@cruncher.tec.linutronix.de> | 2006-05-26 12:52:08 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@cruncher.tec.linutronix.de> | 2006-05-26 12:52:08 -0400 |
commit | f75e5097ef298c5a0aa106faa211d1afdc92dc3d (patch) | |
tree | 0de4534e9ae54cf5d17ea9ef20acefb931167eee /drivers/mtd/nand/nand_bbt.c | |
parent | e4d222ff18bca6322f032088a21e9c4a4c038b85 (diff) |
[MTD] NAND modularize write function
Modularize the write function and reorganaize the internal buffer
management. Remove obsolete chip options and fixup all affected
users.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/mtd/nand/nand_bbt.c')
-rw-r--r-- | drivers/mtd/nand/nand_bbt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_bbt.c b/drivers/mtd/nand/nand_bbt.c index ecaaca18d1e0..40f99304df76 100644 --- a/drivers/mtd/nand/nand_bbt.c +++ b/drivers/mtd/nand/nand_bbt.c | |||
@@ -666,7 +666,7 @@ static inline int nand_memory_bbt(struct mtd_info *mtd, struct nand_bbt_descr *b | |||
666 | struct nand_chip *this = mtd->priv; | 666 | struct nand_chip *this = mtd->priv; |
667 | 667 | ||
668 | bd->options &= ~NAND_BBT_SCANEMPTY; | 668 | bd->options &= ~NAND_BBT_SCANEMPTY; |
669 | return create_bbt(mtd, this->data_buf, bd, -1); | 669 | return create_bbt(mtd, this->buffers.databuf, bd, -1); |
670 | } | 670 | } |
671 | 671 | ||
672 | /** | 672 | /** |