diff options
| author | Andy Fleming <afleming@freescale.com> | 2007-08-03 02:23:23 -0500 | 
|---|---|---|
| committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2007-08-03 02:23:23 -0500 | 
| commit | 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78 (patch) | |
| tree | 4bc9e1362c3090bb6d2df71109228ca61b8d00ce /common/cmd_nand.c | |
| parent | 5a56af3b522ba47fb33a3fee84d23bf1e5429654 (diff) | |
| parent | 5dc210dec5bace98a50b6ba905347890091a9bb0 (diff) | |
| download | olio-uboot-2014.01-6bf6f114dcdd97ec3f80c2761ed40e31229d6b78.tar.xz olio-uboot-2014.01-6bf6f114dcdd97ec3f80c2761ed40e31229d6b78.zip | |
Merge branch 'testing' into working
Conflicts:
	CHANGELOG
	fs/fat/fat.c
	include/configs/MPC8560ADS.h
	include/configs/pcs440ep.h
	net/eth.c
Diffstat (limited to 'common/cmd_nand.c')
| -rw-r--r-- | common/cmd_nand.c | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/common/cmd_nand.c b/common/cmd_nand.c index b088150f3..8832db960 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -19,7 +19,7 @@   */  #include <common.h> -#if (CONFIG_COMMANDS & CFG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #include <command.h>  #include <watchdog.h> @@ -36,7 +36,7 @@  #include <jffs2/jffs2.h>  #include <nand.h> -#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE) +#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE)  /* parition handling routines */  int mtdparts_init(void); @@ -104,7 +104,7 @@ static int  arg_off_size(int argc, char *argv[], nand_info_t *nand, ulong *off, ulong *size)  {  	int idx = nand_curr_device; -#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE) +#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE)  	struct mtd_device *dev;  	struct part_info *part;  	u8 pnum; @@ -152,7 +152,7 @@ arg_off_size(int argc, char *argv[], nand_info_t *nand, ulong *off, ulong *size)  		*size = nand->size - *off;  	} -#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE) +#if  defined(CONFIG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE)  out:  #endif  	printf("device %d ", idx); @@ -537,7 +537,7 @@ int do_nandboot(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  	char *boot_device = NULL;  	int idx;  	ulong addr, offset = 0; -#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE) +#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE)  	struct mtd_device *dev;  	struct part_info *part;  	u8 pnum; @@ -582,7 +582,7 @@ int do_nandboot(cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])  		offset = simple_strtoul(argv[3], NULL, 16);  		break;  	default: -#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE) +#if defined(CONFIG_CMD_JFFS2) && defined(CONFIG_JFFS2_CMDLINE)  usage:  #endif  		printf("Usage:\n%s\n", cmdtp->usage); @@ -614,7 +614,7 @@ U_BOOT_CMD(nboot, 4, 1, do_nandboot,  	"nboot   - boot from NAND device\n",  	"[partition] | [[[loadAddr] dev] offset]\n"); -#endif				/* (CONFIG_COMMANDS & CFG_CMD_NAND) */ +#endif  #else /* CFG_NAND_LEGACY */  /* @@ -634,7 +634,7 @@ U_BOOT_CMD(nboot, 4, 1, do_nandboot,  # define SHOW_BOOT_PROGRESS(arg)  #endif -#if (CONFIG_COMMANDS & CFG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #include <linux/mtd/nand_legacy.h>  #if 0  #include <linux/mtd/nand_ids.h> @@ -999,6 +999,6 @@ U_BOOT_CMD(  	"loadAddr dev\n"  ); -#endif /* (CONFIG_COMMANDS & CFG_CMD_NAND) */ +#endif  #endif /* CFG_NAND_LEGACY */ |