diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2008-07-26 04:25:18 -0400 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2008-10-18 06:51:48 -0400 |
commit | 43b5693d404127697d62962def8c1bfe3a89811a (patch) | |
tree | e671dbb20fb4bd50d8bb994aabbfe0459729176b /drivers/mtd/mtdoops.c | |
parent | f0482ee3669a78bdb1e15b9f9c58a9f1ffc5a997 (diff) |
[MTD] mtdoops: Fix a bug where block may not be erased
This makes the driver erase a block when it doesn't find any
existing saved log messages which is safer than assuming the
flash was already erased.
Signed-off-by: Richard Purdie <rpurdie@rpsys.net>
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, 1 insertions, 3 deletions
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index 6f6b2f3c70df..aebb3b27edbd 100644 --- a/drivers/mtd/mtdoops.c +++ b/drivers/mtd/mtdoops.c | |||
@@ -258,9 +258,7 @@ static void find_next_position(struct mtdoops_context *cxt) | |||
258 | if (maxcount == 0xffffffff) { | 258 | if (maxcount == 0xffffffff) { |
259 | cxt->nextpage = 0; | 259 | cxt->nextpage = 0; |
260 | cxt->nextcount = 1; | 260 | cxt->nextcount = 1; |
261 | cxt->ready = 1; | 261 | schedule_work(&cxt->work_erase); |
262 | printk(KERN_DEBUG "mtdoops: Ready %d, %d (first init)\n", | ||
263 | cxt->nextpage, cxt->nextcount); | ||
264 | return; | 262 | return; |
265 | } | 263 | } |
266 | 264 | ||