From b4061f61cdf951760020c6d4789023d4001b9782 Mon Sep 17 00:00:00 2001 From: Carl-Daniel Hailfinger Date: Sun, 26 Jun 2011 17:04:16 +0000 Subject: Move erase verification to generic code Erase functions are no longer called from chip drivers and thus their internal erase verification can be moved to generic code. This also makes it easier to skip the verify step if desired and to differentiate between failed command submission and failed erase verification. Corresponding to flashrom svn r1353. Signed-off-by: Carl-Daniel Hailfinger Acked-by: Stefan Tauner --- flashrom.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'flashrom.c') diff --git a/flashrom.c b/flashrom.c index 6979d84..13dd581 100644 --- a/flashrom.c +++ b/flashrom.c @@ -1400,6 +1400,10 @@ static int erase_and_write_block_helper(struct flashchip *flash, ret = erasefn(flash, start, len); if (ret) return ret; + if (check_erased_range(flash, start, len)) { + msg_cerr("ERASE FAILED!\n"); + return -1; + } /* Erase was successful. Adjust curcontents. */ memset(curcontents, 0xff, len); skip = 0; -- cgit v1.1