nand: fix nand read.option parsing
"nand read.part addr off size" would be treated as "nand read.raw addr off 1" It now fails as intended stating "Unknown nand command suffix '.part'" Signed-off-by: Harvey Chapman <hchapman@3gfp.com>
This commit is contained in:
parent
8fdf1e0f6d
commit
ced199dc85
|
@ -608,7 +608,7 @@ static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
|||
size_t rwsize;
|
||||
ulong pagecount = 1;
|
||||
int read;
|
||||
int raw;
|
||||
int raw = 0;
|
||||
|
||||
if (argc < 4)
|
||||
goto usage;
|
||||
|
|
Loading…
Reference in New Issue