|
@@ -1387,12 +1387,11 @@ EXPORT_SYMBOL(nand_create_bbt);
|
|
|
|
|
|
/**
|
|
|
* nand_isreserved_bbt - [NAND Interface] Check if a block is reserved
|
|
|
- * @mtd: MTD device structure
|
|
|
+ * @this: NAND chip object
|
|
|
* @offs: offset in the device
|
|
|
*/
|
|
|
-int nand_isreserved_bbt(struct mtd_info *mtd, loff_t offs)
|
|
|
+int nand_isreserved_bbt(struct nand_chip *this, loff_t offs)
|
|
|
{
|
|
|
- struct nand_chip *this = mtd_to_nand(mtd);
|
|
|
int block;
|
|
|
|
|
|
block = (int)(offs >> this->bbt_erase_shift);
|
|
@@ -1401,13 +1400,12 @@ int nand_isreserved_bbt(struct mtd_info *mtd, loff_t offs)
|
|
|
|
|
|
/**
|
|
|
* nand_isbad_bbt - [NAND Interface] Check if a block is bad
|
|
|
- * @mtd: MTD device structure
|
|
|
+ * @this: NAND chip object
|
|
|
* @offs: offset in the device
|
|
|
* @allowbbt: allow access to bad block table region
|
|
|
*/
|
|
|
-int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
|
|
|
+int nand_isbad_bbt(struct nand_chip *this, loff_t offs, int allowbbt)
|
|
|
{
|
|
|
- struct nand_chip *this = mtd_to_nand(mtd);
|
|
|
int block, res;
|
|
|
|
|
|
block = (int)(offs >> this->bbt_erase_shift);
|
|
@@ -1429,12 +1427,12 @@ int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)
|
|
|
|
|
|
/**
|
|
|
* nand_markbad_bbt - [NAND Interface] Mark a block bad in the BBT
|
|
|
- * @mtd: MTD device structure
|
|
|
+ * @this: NAND chip object
|
|
|
* @offs: offset of the bad block
|
|
|
*/
|
|
|
-int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs)
|
|
|
+int nand_markbad_bbt(struct nand_chip *this, loff_t offs)
|
|
|
{
|
|
|
- struct nand_chip *this = mtd_to_nand(mtd);
|
|
|
+ struct mtd_info *mtd = nand_to_mtd(this);
|
|
|
int block, ret = 0;
|
|
|
|
|
|
block = (int)(offs >> this->bbt_erase_shift);
|