aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/nand_bbt.c
diff options
context:
space:
mode:
authorBrian Norris <computersforpeace@gmail.com>2011-05-31 19:31:24 -0400
committerArtem Bityutskiy <artem.bityutskiy@intel.com>2011-09-11 08:01:56 -0400
commitb8f80684054ec8a3bcdf35dc9c76ddf629a36482 (patch)
tree0cb7074e709c2ec0095881079f2acca8ad717b94 /drivers/mtd/nand/nand_bbt.c
parentbb9ebd4e714385a2592a482845865ef2d58b2868 (diff)
mtd: nand: move NAND_CREATE_EMPTY_BBT flag
The NAND_CREATE_EMPTY_BBT flag was added by commit: 453281a973c10bce941b240d1c654d536623b16b mtd: nand: introduce NAND_CREATE_EMPTY_BBT This flag is not used within the kernel and not explained well, so I took the liberty to edit its comments. Also, this is a BBT-related flag (and closely tied with NAND_BBT_CREATE) so I'm moving it to bbm.h next to NAND_BBT_CREATE, thus requiring that we use the flag in nand_chip.bbt_options, *not* in nand_chip.options. Signed-off-by: Brian Norris <computersforpeace@gmail.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/nand/nand_bbt.c')
-rw-r--r--drivers/mtd/nand/nand_bbt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/nand_bbt.c b/drivers/mtd/nand/nand_bbt.c
index dfea9fd1d61c..2e4e25996f03 100644
--- a/drivers/mtd/nand/nand_bbt.c
+++ b/drivers/mtd/nand/nand_bbt.c
@@ -970,7 +970,7 @@ static int check_create(struct mtd_info *mtd, uint8_t *buf, struct nand_bbt_desc
970 continue; 970 continue;
971 971
972 /* Create the table in memory by scanning the chip(s) */ 972 /* Create the table in memory by scanning the chip(s) */
973 if (!(this->options & NAND_CREATE_EMPTY_BBT)) 973 if (!(this->bbt_options & NAND_CREATE_EMPTY_BBT))
974 create_bbt(mtd, buf, bd, chipsel); 974 create_bbt(mtd, buf, bd, chipsel);
975 975
976 td->version[i] = 1; 976 td->version[i] = 1;