diff options
author | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2011-06-26 17:04:16 +0000 |
---|---|---|
committer | Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> | 2011-06-26 17:04:16 +0000 |
commit | b4061f61cdf951760020c6d4789023d4001b9782 (patch) | |
tree | 99b4aec1edbe35372a0fe653b5448f52c0fe98c8 /m29f400bt.c | |
parent | bfa021dd80594e51fa25feee56457d545849e312 (diff) | |
download | flashrom-b4061f61cdf951760020c6d4789023d4001b9782.tar.gz flashrom-b4061f61cdf951760020c6d4789023d4001b9782.tar.bz2 flashrom-b4061f61cdf951760020c6d4789023d4001b9782.zip |
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 <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Stefan Tauner <stefan.tauner@alumni.tuwien.ac.at>
Diffstat (limited to 'm29f400bt.c')
-rw-r--r-- | m29f400bt.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/m29f400bt.c b/m29f400bt.c index 7e4f51c81..e0d41d4e5 100644 --- a/m29f400bt.c +++ b/m29f400bt.c @@ -101,10 +101,7 @@ int erase_m29f400bt(struct flashchip *flash) programmer_delay(10); toggle_ready_jedec(bios); - if (check_erased_range(flash, 0, flash->total_size * 1024)) { - msg_cerr("ERASE FAILED!\n"); - return -1; - } + /* FIXME: Check the status register for errors. */ return 0; } @@ -124,10 +121,7 @@ int block_erase_m29f400bt(struct flashchip *flash, unsigned int start, unsigned programmer_delay(10); toggle_ready_jedec(bios); - if (check_erased_range(flash, start, len)) { - msg_cerr("ERASE FAILED!\n"); - return -1; - } + /* FIXME: Check the status register for errors. */ return 0; } |