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 /fs/logfs | |
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 'fs/logfs')
-rw-r--r-- | fs/logfs/dev_mtd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/logfs/dev_mtd.c b/fs/logfs/dev_mtd.c index 0ca7a07db6c1..136c7360a9b6 100644 --- a/fs/logfs/dev_mtd.c +++ b/fs/logfs/dev_mtd.c | |||
@@ -157,7 +157,7 @@ static struct page *logfs_mtd_find_first_sb(struct super_block *sb, u64 *ofs) | |||
157 | return NULL; | 157 | return NULL; |
158 | 158 | ||
159 | *ofs = 0; | 159 | *ofs = 0; |
160 | while (mtd->block_isbad(mtd, *ofs)) { | 160 | while (mtd_block_isbad(mtd, *ofs)) { |
161 | *ofs += mtd->erasesize; | 161 | *ofs += mtd->erasesize; |
162 | if (*ofs >= mtd->size) | 162 | if (*ofs >= mtd->size) |
163 | return NULL; | 163 | return NULL; |
@@ -177,7 +177,7 @@ static struct page *logfs_mtd_find_last_sb(struct super_block *sb, u64 *ofs) | |||
177 | return NULL; | 177 | return NULL; |
178 | 178 | ||
179 | *ofs = mtd->size - mtd->erasesize; | 179 | *ofs = mtd->size - mtd->erasesize; |
180 | while (mtd->block_isbad(mtd, *ofs)) { | 180 | while (mtd_block_isbad(mtd, *ofs)) { |
181 | *ofs -= mtd->erasesize; | 181 | *ofs -= mtd->erasesize; |
182 | if (*ofs <= 0) | 182 | if (*ofs <= 0) |
183 | return NULL; | 183 | return NULL; |