diff options
author | Peter Tyser | 2015-02-03 11:58:14 -0600 |
---|---|---|
committer | Scott Wood | 2015-03-30 23:24:38 -0500 |
commit | 9ac71f112eb3cffc42e012fcdf5009e5b3b01a1d (patch) | |
tree | 5168327157e1bca58b690a66d78b2d984baa717c /drivers/dfu | |
parent | 6b94f118a213583ada80bab25fedacc08562392d (diff) |
dfu: nand: Verify writes
Previously NAND writes were not verified and could fail silently. Add
a verification step after all writes to NAND.
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Reviewed-by: Lukasz Majewski <l.majewski@samsung.com>
Tested-by: Heiko Schocher <hs@denx.de>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'drivers/dfu')
-rw-r--r-- | drivers/dfu/dfu_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dfu/dfu_nand.c b/drivers/dfu/dfu_nand.c index f9ee18999ab..a9754922e8d 100644 --- a/drivers/dfu/dfu_nand.c +++ b/drivers/dfu/dfu_nand.c @@ -64,7 +64,7 @@ static int nand_block_op(enum dfu_op op, struct dfu_entity *dfu, return ret; /* then write */ ret = nand_write_skip_bad(nand, start, &count, &actual, - lim, buf, 0); + lim, buf, WITH_WR_VERIFY); } if (ret != 0) { |