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/mtdoops.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/mtdoops.c')
-rw-r--r-- | drivers/mtd/mtdoops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index 7be2018ffbcc..bc43d2f7272c 100644 --- a/drivers/mtd/mtdoops.c +++ b/drivers/mtd/mtdoops.c | |||
@@ -170,7 +170,7 @@ static void mtdoops_workfunc_erase(struct work_struct *work) | |||
170 | } | 170 | } |
171 | 171 | ||
172 | while (mtd->block_isbad) { | 172 | while (mtd->block_isbad) { |
173 | ret = mtd->block_isbad(mtd, cxt->nextpage * record_size); | 173 | ret = mtd_block_isbad(mtd, cxt->nextpage * record_size); |
174 | if (!ret) | 174 | if (!ret) |
175 | break; | 175 | break; |
176 | if (ret < 0) { | 176 | if (ret < 0) { |
@@ -254,7 +254,7 @@ static void find_next_position(struct mtdoops_context *cxt) | |||
254 | 254 | ||
255 | for (page = 0; page < cxt->oops_pages; page++) { | 255 | for (page = 0; page < cxt->oops_pages; page++) { |
256 | if (mtd->block_isbad && | 256 | if (mtd->block_isbad && |
257 | mtd->block_isbad(mtd, page * record_size)) | 257 | mtd_block_isbad(mtd, page * record_size)) |
258 | continue; | 258 | continue; |
259 | /* Assume the page is used */ | 259 | /* Assume the page is used */ |
260 | mark_page_used(cxt, page); | 260 | mark_page_used(cxt, page); |