diff options
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; |