mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
cmd_nand: Do not show usage when scrub is aborted
When executing nand scrub, the user gets the prompt: Really scrub this NAND flash? <y/N> We do not want the annoying usage displayed when saying N here. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
This commit is contained in:
parent
7d25cd34e9
commit
46aabcc446
1 changed files with 2 additions and 2 deletions
|
|
@ -616,11 +616,11 @@ static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
opts.scrub = 1;
|
||||
else {
|
||||
puts("scrub aborted\n");
|
||||
return -1;
|
||||
return 1;
|
||||
}
|
||||
} else {
|
||||
puts("scrub aborted\n");
|
||||
return -1;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
ret = nand_erase_opts(nand, &opts);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue