diff options
| author | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
| commit | b706d63559aeec352bc72dd86d7d5423c15f6a60 (patch) | |
| tree | fdeda4d61970fef239d9d66ecd851fa46cfe5ec0 /common/cmd_jffs2.c | |
| parent | c8603cfbd4573379a6076c9c208545ba2bbf019a (diff) | |
| parent | 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7 (diff) | |
| download | olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.tar.xz olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.zip | |
Merge with git://www.denx.de/git/u-boot.git
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 |