diff options
| author | Wolfgang Denk <wd@denx.de> | 2007-08-06 01:11:08 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2007-08-06 01:11:08 +0200 | 
| commit | f2c2a937d8c4a44f63ff88bf82023e03a29497a2 (patch) | |
| tree | fa8f7c9fb65d10259e76c40c52cf8277947424d4 /common/cmd_jffs2.c | |
| parent | b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86 (diff) | |
| parent | 5728be389e65fd47f34b33c2596271eb4db751ae (diff) | |
| download | olio-uboot-2014.01-f2c2a937d8c4a44f63ff88bf82023e03a29497a2.tar.xz olio-uboot-2014.01-f2c2a937d8c4a44f63ff88bf82023e03a29497a2.zip | |
Merge with /home/wd/git/u-boot/custodian/u-boot-testing
Diffstat (limited to 'common/cmd_jffs2.c')
| -rw-r--r-- | common/cmd_jffs2.c | 16 | 
1 files changed, 8 insertions, 8 deletions
| diff --git a/common/cmd_jffs2.c b/common/cmd_jffs2.c index 7fd1fa33d..513a226c4 100644 --- a/common/cmd_jffs2.c +++ b/common/cmd_jffs2.c @@ -94,18 +94,18 @@  #include <linux/list.h>  #include <linux/ctype.h> -#if (CONFIG_COMMANDS & CFG_CMD_JFFS2) +#if defined(CONFIG_CMD_JFFS2)  #include <cramfs/cramfs_fs.h> -#if (CONFIG_COMMANDS & CFG_CMD_NAND) +#if defined(CONFIG_CMD_NAND)  #ifdef CFG_NAND_LEGACY  #include <linux/mtd/nand_legacy.h>  #else /* !CFG_NAND_LEGACY */  #include <linux/mtd/nand.h>  #include <nand.h>  #endif /* !CFG_NAND_LEGACY */ -#endif /* (CONFIG_COMMANDS & CFG_CMD_NAND) */ +#endif  /* enable/disable debugging messages */  #define	DEBUG_JFFS  #undef	DEBUG_JFFS @@ -321,7 +321,7 @@ static void current_save(void)   */  static int part_validate_nor(struct mtdids *id, struct part_info *part)  { -#if (CONFIG_COMMANDS & CFG_CMD_FLASH) +#if defined(CONFIG_CMD_FLASH)  	/* info for FLASH chips */  	extern flash_info_t flash_info[];  	flash_info_t *flash; @@ -370,7 +370,7 @@ static int part_validate_nor(struct mtdids *id, struct part_info *part)   */  static int part_validate_nand(struct mtdids *id, struct part_info *part)  { -#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) +#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)  	/* info for NAND chips */  	nand_info_t *nand; @@ -719,7 +719,7 @@ static int part_parse(const char *const partdef, const char **ret, struct part_i  static int device_validate(u8 type, u8 num, u32 *size)  {  	if (type == MTD_DEV_TYPE_NOR) { -#if (CONFIG_COMMANDS & CFG_CMD_FLASH) +#if defined(CONFIG_CMD_FLASH)  		if (num < CFG_MAX_FLASH_BANKS) {  			extern flash_info_t flash_info[];  			*size = flash_info[num].size; @@ -733,7 +733,7 @@ static int device_validate(u8 type, u8 num, u32 *size)  		printf("support for FLASH devices not present\n");  #endif  	} else if (type == MTD_DEV_TYPE_NAND) { -#if defined(CONFIG_JFFS2_NAND) && (CONFIG_COMMANDS & CFG_CMD_NAND) +#if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)  		if (num < CFG_MAX_NAND_DEVICE) {  #ifndef CFG_NAND_LEGACY  			*size = nand_info[num].size; @@ -2192,4 +2192,4 @@ U_BOOT_CMD(  /***************************************************/ -#endif /* CFG_CMD_JFFS2 */ +#endif |