commit | abd3a3bf38191a36c98499e18433581c91434eae | [log] [tgz] |
---|---|---|
author | Harvey Chapman <hchapman@3gfp.com> | Thu Feb 07 11:34:44 2013 +0000 |
committer | Scott Wood <scottwood@freescale.com> | Fri Feb 22 18:49:04 2013 -0600 |
tree | e99dc7ee146865f2cabf3d8be90e7e040dd9c8c6 | |
parent | 3df41b18ebb806c598731ecc54f64ba5a03915db [diff] |
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>
diff --git a/common/cmd_nand.c b/common/cmd_nand.c index 1568594..495610c 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c
@@ -608,7 +608,7 @@ size_t rwsize; ulong pagecount = 1; int read; - int raw; + int raw = 0; if (argc < 4) goto usage;