Commit da1b23d1 authored by Roel Kluin's avatar Roel Kluin Committed by James Toy

If the erase region was found in the first iteration we read from

regions[-1]
Signed-off-by: default avatarRoel Kluin <roel.kluin@gmail.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
parent fb0d7c3b
...@@ -453,6 +453,7 @@ static struct mtd_part *add_one_partition(struct mtd_info *master, ...@@ -453,6 +453,7 @@ static struct mtd_part *add_one_partition(struct mtd_info *master,
for (i = 0; i < max && regions[i].offset <= slave->offset; i++) for (i = 0; i < max && regions[i].offset <= slave->offset; i++)
; ;
/* The loop searched for the region _behind_ the first one */ /* The loop searched for the region _behind_ the first one */
if (i > 0)
i--; i--;
/* Pick biggest erasesize */ /* Pick biggest erasesize */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment