This prevents drivers from setting the options flags to use the flash bab block table when the BBT is not enabled in config. Signed-off-by: Marc Reilly <marc@xxxxxxxxxxxxxxx> --- drivers/mtd/nand/atmel_nand.c | 2 +- drivers/mtd/nand/nand_imx.c | 2 +- drivers/mtd/nand/nand_s3c24xx.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index 96624a1..cc62df9 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c @@ -407,7 +407,7 @@ static int __init atmel_nand_probe(struct device_d *dev) } } - if (host->board->on_flash_bbt) { + if (IS_ENABLED(CONFIG_NAND_BBT) && host->board->on_flash_bbt) { printk(KERN_INFO "atmel_nand: Use On Flash BBT\n"); nand_chip->options |= NAND_USE_FLASH_BBT; } diff --git a/drivers/mtd/nand/nand_imx.c b/drivers/mtd/nand/nand_imx.c index e75ffbc..67b056b 100644 --- a/drivers/mtd/nand/nand_imx.c +++ b/drivers/mtd/nand/nand_imx.c @@ -1142,7 +1142,7 @@ static int __init imxnd_probe(struct device_d *dev) imx_nand_set_layout(0, 16); } - if (pdata->flash_bbt) { + if (IS_ENABLED(CONFIG_NAND_BBT) && pdata->flash_bbt) { this->bbt_td = &bbt_main_descr; this->bbt_md = &bbt_mirror_descr; /* update flash based bbt */ diff --git a/drivers/mtd/nand/nand_s3c24xx.c b/drivers/mtd/nand/nand_s3c24xx.c index c629701..63a3aac 100644 --- a/drivers/mtd/nand/nand_s3c24xx.c +++ b/drivers/mtd/nand/nand_s3c24xx.c @@ -469,7 +469,7 @@ static int s3c24x0_nand_probe(struct device_d *dev) chip->ecc.layout = &nand_hw_eccoob; } - if (pdata->flash_bbt) { + if (IS_ENABLED(CONFIG_NAND_BBT) && pdata->flash_bbt) { /* use a flash based bbt */ chip->options |= NAND_USE_FLASH_BBT; } -- 1.7.7 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox