mirror of
https://github.com/Fishwaldo/build.git
synced 2025-04-01 03:31:36 +00:00
* Bump to 4.18, removing the obvious, fixing build problems, put some on waiting. * Pin 4.18 to DEV, rollback 4.14 to NEXT, adjust configs, remove one deprecated patch from NEXT and add board-h3-address-some-stability-issues.patch * Adjust few boards in development to new reality, removing it from NEXT for now * Adjust few board configs * Board config adjustement * Adjust few boards configs * Port NeoCore2 and Neo21.1 to 4.14.y * Adjust board config * Adjust board config
35 lines
873 B
Text
35 lines
873 B
Text
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
|
|
index 77533f7..8b3b184 100644
|
|
--- a/drivers/mtd/nand/nand_base.c
|
|
+++ b/drivers/mtd/nand/nand_base.c
|
|
@@ -532,11 +532,7 @@ static int nand_block_checkbad(struct mtd_info *mtd, loff_t ofs, int allowbbt)
|
|
{
|
|
struct nand_chip *chip = mtd_to_nand(mtd);
|
|
|
|
- if (!chip->bbt)
|
|
- return chip->block_bad(mtd, ofs);
|
|
-
|
|
- /* Return info from the table */
|
|
- return nand_isbad_bbt(mtd, ofs, allowbbt);
|
|
+ return 0;
|
|
}
|
|
|
|
/**
|
|
@@ -3030,16 +3026,7 @@ static int nand_block_isbad(struct mtd_info *mtd, loff_t offs)
|
|
int chipnr = (int)(offs >> chip->chip_shift);
|
|
int ret;
|
|
|
|
- /* Select the NAND device */
|
|
- nand_get_device(mtd, FL_READING);
|
|
- chip->select_chip(mtd, chipnr);
|
|
-
|
|
- ret = nand_block_checkbad(mtd, offs, 0);
|
|
-
|
|
- chip->select_chip(mtd, -1);
|
|
- nand_release_device(mtd);
|
|
-
|
|
- return ret;
|
|
+ return 0;
|
|
}
|
|
|
|
/**
|