diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 12:35:30 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:47 -0500 |
commit | 7086c19d07429d697057587caf1e5e0345442d16 (patch) | |
tree | 3a892182dba0847de32ef79b1fe1d46d8b1b5de8 /drivers/mtd/nftlmount.c | |
parent | ead995f8d4da1e2f1ef40b0e5f4133fee38a3d3d (diff) |
mtd: introduce mtd_block_isbad interface
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'drivers/mtd/nftlmount.c')
-rw-r--r-- | drivers/mtd/nftlmount.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/nftlmount.c b/drivers/mtd/nftlmount.c index b068dc8a3666..156af9f87961 100644 --- a/drivers/mtd/nftlmount.c +++ b/drivers/mtd/nftlmount.c | |||
@@ -242,7 +242,8 @@ The new DiskOnChip driver already scanned the bad block table. Just query it. | |||
242 | if (buf[i & (SECTORSIZE - 1)] != 0xff) | 242 | if (buf[i & (SECTORSIZE - 1)] != 0xff) |
243 | nftl->ReplUnitTable[i] = BLOCK_RESERVED; | 243 | nftl->ReplUnitTable[i] = BLOCK_RESERVED; |
244 | #endif | 244 | #endif |
245 | if (nftl->mbd.mtd->block_isbad(nftl->mbd.mtd, i * nftl->EraseSize)) | 245 | if (mtd_block_isbad(nftl->mbd.mtd, |
246 | i * nftl->EraseSize)) | ||
246 | nftl->ReplUnitTable[i] = BLOCK_RESERVED; | 247 | nftl->ReplUnitTable[i] = BLOCK_RESERVED; |
247 | } | 248 | } |
248 | 249 | ||