diff options
-rw-r--r-- | drivers/mtd/ubi/fastmap-wl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/mtd/ubi/fastmap-wl.c b/drivers/mtd/ubi/fastmap-wl.c index c4717531b24c..7a72af2ec4ec 100644 --- a/drivers/mtd/ubi/fastmap-wl.c +++ b/drivers/mtd/ubi/fastmap-wl.c | |||
@@ -260,10 +260,10 @@ static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi) | |||
260 | schedule_work(&ubi->fm_work); | 260 | schedule_work(&ubi->fm_work); |
261 | } | 261 | } |
262 | return NULL; | 262 | return NULL; |
263 | } else { | ||
264 | pnum = pool->pebs[pool->used++]; | ||
265 | return ubi->lookuptbl[pnum]; | ||
266 | } | 263 | } |
264 | |||
265 | pnum = pool->pebs[pool->used++]; | ||
266 | return ubi->lookuptbl[pnum]; | ||
267 | } | 267 | } |
268 | 268 | ||
269 | /** | 269 | /** |