From: Zach W. <zw...@us...> - 2009-11-20 00:36:12
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 31fb7788a605fe1c0c405444b5bab51a7e42d481 (commit) from 4b18ef15a36a8b618c18ab18d0ed8596ecf9eaaa (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 31fb7788a605fe1c0c405444b5bab51a7e42d481 Author: Dean Glazeski <dn...@gm...> Date: Thu Nov 19 17:12:23 2009 -0600 NAND verify doesn't advance. Fix to move the device address up as the contents are verified. Signed-off-by: Zachary T Welch <zw...@su...> diff --git a/src/flash/nand.c b/src/flash/nand.c index 2085028..77aa3e5 100644 --- a/src/flash/nand.c +++ b/src/flash/nand.c @@ -1620,7 +1620,7 @@ COMMAND_HANDLER(handle_nand_verify_command) } file.size -= bytes_read; - file.address += nand->page_size; + dev.address += nand->page_size; } if (nand_fileio_finish(&file) == ERROR_OK) ----------------------------------------------------------------------- Summary of changes: src/flash/nand.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- Main OpenOCD repository |