diff options
| author | Stefan Roese <sr@denx.de> | 2008-01-05 16:50:32 +0100 | 
|---|---|---|
| committer | Scott Wood <scottwood@freescale.com> | 2008-08-12 11:31:23 -0500 | 
| commit | deac913effd8d80535c9ff4687b6fcdff540c554 (patch) | |
| tree | 461af9ef897186c7d7233d2fa912edaa15b56cbe /common/cmd_nand.c | |
| parent | c568f77acdf896fc3dd6413ce53205b17ba809a3 (diff) | |
| download | olio-uboot-2014.01-deac913effd8d80535c9ff4687b6fcdff540c554.tar.xz olio-uboot-2014.01-deac913effd8d80535c9ff4687b6fcdff540c554.zip | |
NAND: Fix compilation warning and small coding style issue
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common/cmd_nand.c')
| -rw-r--r-- | common/cmd_nand.c | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/common/cmd_nand.c b/common/cmd_nand.c index af1b1cadd..710ba8f94 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -50,7 +50,6 @@ static int nand_dump(nand_info_t *nand, ulong off, int only_oob)  		return 1;  	}  	off &= ~(nand->writesize - 1); -	size_t dummy;  	loff_t addr = (loff_t) off;  	struct mtd_oob_ops ops;  	memset(&ops, 0, sizeof(ops)); @@ -415,7 +414,7 @@ int do_nand(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  		}  /*   * ! BROKEN ! - *  + *   * TODO: must be implemented and tested by someone with HW   */  #if 0 @@ -469,7 +468,7 @@ int do_nand(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  /*   * ! BROKEN ! - *  + *   * TODO: must be implemented and tested by someone with HW   */  #if 0 |