Skip to content
Snippets Groups Projects
Commit 2077e348 authored by Scott Wood's avatar Scott Wood
Browse files

NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().


This caused the operation to be needlessly repeated if there were
no bad blocks and no errors.

Signed-off-by: default avatarValeriy Glushkov <gvv@lstec.com>
Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
parent 49a4c747
No related branches found
No related tags found
No related merge requests found
......@@ -487,11 +487,11 @@ int nand_write_skip_bad(nand_info_t *nand, size_t offset, size_t *length,
if (len_incl_bad == *length) {
rval = nand_write (nand, offset, length, buffer);
if (rval != 0) {
if (rval != 0)
printf ("NAND write to offset %x failed %d\n",
offset, rval);
return rval;
}
return rval;
}
while (left_to_write > 0) {
......@@ -557,11 +557,11 @@ int nand_read_skip_bad(nand_info_t *nand, size_t offset, size_t *length,
if (len_incl_bad == *length) {
rval = nand_read (nand, offset, length, buffer);
if (rval != 0) {
if (rval != 0)
printf ("NAND read from offset %x failed %d\n",
offset, rval);
return rval;
}
return rval;
}
while (left_to_read > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment