diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-13 01:40:43 +0200 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-13 01:40:43 +0200 | 
| commit | cc4a0ceeac5462106172d0cc9d9d542233aa3ab2 (patch) | |
| tree | 120ee426f780a47892f00a98e30605115f010f37 | |
| parent | 4fb09b81920e5dfdfc4576883186733f0bd6059c (diff) | |
| download | olio-uboot-2014.01-cc4a0ceeac5462106172d0cc9d9d542233aa3ab2.tar.xz olio-uboot-2014.01-cc4a0ceeac5462106172d0cc9d9d542233aa3ab2.zip | |
drivers/mtd/nand: Move conditional compilation to Makefile
rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48 files changed, 62 insertions, 89 deletions
| diff --git a/board/delta/nand.c b/board/delta/nand.c index b007b090d..4ce78a1e1 100644 --- a/board/delta/nand.c +++ b/board/delta/nand.c @@ -23,7 +23,7 @@  #include <common.h>  #if defined(CONFIG_CMD_NAND) -#if !defined(CFG_NAND_LEGACY) +#if !defined(CONFIG_NAND_LEGACY)  #include <nand.h>  #include <asm/arch/pxa-regs.h> diff --git a/board/esd/common/auto_update.c b/board/esd/common/auto_update.c index 7e6eea0f1..a1e0ce5a2 100644 --- a/board/esd/common/auto_update.c +++ b/board/esd/common/auto_update.c @@ -27,7 +27,7 @@  #include <command.h>  #include <image.h>  #include <asm/byteorder.h> -#if defined(CFG_NAND_LEGACY) +#if defined(CONFIG_NAND_LEGACY)  #include <linux/mtd/nand_legacy.h>  #endif  #include <fat.h> @@ -58,7 +58,7 @@ extern int flash_sect_erase(ulong, ulong);  extern int flash_sect_protect (int, ulong, ulong);  extern int flash_write (char *, ulong, ulong); -#if defined(CONFIG_CMD_NAND) && defined(CFG_NAND_LEGACY) +#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_LEGACY)  /* references to names in cmd_nand.c */  #define NANDRW_READ	0x01  #define NANDRW_WRITE	0x00 @@ -158,7 +158,7 @@ int au_do_update(int i, long sz)  	int off, rc;  	uint nbytes;  	int k; -#if defined(CONFIG_CMD_NAND) && defined(CFG_NAND_LEGACY) +#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_LEGACY)  	int total;  #endif @@ -241,7 +241,7 @@ int au_do_update(int i, long sz)  			debug ("flash_sect_erase(%lx, %lx);\n", start, end);  			flash_sect_erase (start, end);  		} else { -#if defined(CONFIG_CMD_NAND) && defined(CFG_NAND_LEGACY) +#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_LEGACY)  			printf ("Updating NAND FLASH with image %s\n",  				au_image[i].name);  			debug ("nand_legacy_erase(%lx, %lx);\n", start, end); @@ -273,7 +273,7 @@ int au_do_update(int i, long sz)  			rc = flash_write ((char *)addr, start,  					  (nbytes + 1) & ~1);  		} else { -#if defined(CONFIG_CMD_NAND) && defined(CFG_NAND_LEGACY) +#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_LEGACY)  			debug ("nand_legacy_rw(%p, %lx, %x)\n",  			       addr, start, nbytes);  			rc = nand_legacy_rw (nand_dev_desc, @@ -298,7 +298,7 @@ int au_do_update(int i, long sz)  			rc = crc32 (0, (uchar *)(start + off),  				    image_get_data_size (hdr));  		} else { -#if defined(CONFIG_CMD_NAND) && defined(CFG_NAND_LEGACY) +#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_LEGACY)  			rc = nand_legacy_rw (nand_dev_desc,  					     NANDRW_READ | NANDRW_JFFS2 |  					     NANDRW_JFFS2_SKIP, diff --git a/board/netta/netta.c b/board/netta/netta.c index 1183f33ef..bc31386ec 100644 --- a/board/netta/netta.c +++ b/board/netta/netta.c @@ -555,7 +555,7 @@ int board_early_init_f(void)  	return 0;  } -#if defined(CONFIG_CMD_NAND) && defined(CFG_NAND_LEGACY) +#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_LEGACY)  #include <linux/mtd/nand_legacy.h> diff --git a/common/cmd_jffs2.c b/common/cmd_jffs2.c index b4698bee4..c031d8034 100644 --- a/common/cmd_jffs2.c +++ b/common/cmd_jffs2.c @@ -96,12 +96,12 @@  #include <cramfs/cramfs_fs.h>  #if defined(CONFIG_CMD_NAND) -#ifdef CFG_NAND_LEGACY +#ifdef CONFIG_NAND_LEGACY  #include <linux/mtd/nand_legacy.h> -#else /* !CFG_NAND_LEGACY */ +#else /* !CONFIG_NAND_LEGACY */  #include <linux/mtd/nand.h>  #include <nand.h> -#endif /* !CFG_NAND_LEGACY */ +#endif /* !CONFIG_NAND_LEGACY */  #endif  /* enable/disable debugging messages */  #define	DEBUG_JFFS @@ -476,7 +476,7 @@ static int part_del(struct mtd_device *dev, struct part_info *part)  		}  	} -#ifdef CFG_NAND_LEGACY +#ifdef CONFIG_NAND_LEGACY  	jffs2_free_cache(part);  #endif  	list_del(&part->link); @@ -505,7 +505,7 @@ static void part_delall(struct list_head *head)  	list_for_each_safe(entry, n, head) {  		part_tmp = list_entry(entry, struct part_info, link); -#ifdef CFG_NAND_LEGACY +#ifdef CONFIG_NAND_LEGACY  		jffs2_free_cache(part_tmp);  #endif  		list_del(entry); @@ -741,7 +741,7 @@ static int device_validate(u8 type, u8 num, u32 *size)  	} else if (type == MTD_DEV_TYPE_NAND) {  #if defined(CONFIG_JFFS2_NAND) && defined(CONFIG_CMD_NAND)  		if (num < CFG_MAX_NAND_DEVICE) { -#ifndef CFG_NAND_LEGACY +#ifndef CONFIG_NAND_LEGACY  			*size = nand_info[num].size;  #else  			extern struct nand_chip nand_dev_desc[CFG_MAX_NAND_DEVICE]; diff --git a/common/cmd_nand.c b/common/cmd_nand.c index 520c15217..fa7a438b5 100644 --- a/common/cmd_nand.c +++ b/common/cmd_nand.c @@ -11,7 +11,7 @@  #include <common.h> -#ifndef CFG_NAND_LEGACY +#ifndef CONFIG_NAND_LEGACY  /*   *   * New NAND support @@ -667,7 +667,7 @@ U_BOOT_CMD(nboot, 4, 1, do_nandboot,  #endif -#else /* CFG_NAND_LEGACY */ +#else /* CONFIG_NAND_LEGACY */  /*   *   * Legacy NAND support - to be phased out @@ -1077,4 +1077,4 @@ U_BOOT_CMD(  #endif -#endif /* CFG_NAND_LEGACY */ +#endif /* CONFIG_NAND_LEGACY */ diff --git a/cpu/arm920t/s3c24x0/nand.c b/cpu/arm920t/s3c24x0/nand.c index e1bf12815..14882cb24 100644 --- a/cpu/arm920t/s3c24x0/nand.c +++ b/cpu/arm920t/s3c24x0/nand.c @@ -27,7 +27,7 @@  #endif  #if defined(CONFIG_CMD_NAND) -#if !defined(CFG_NAND_LEGACY) +#if !defined(CONFIG_NAND_LEGACY)  #include <nand.h>  #include <s3c2410.h> diff --git a/cpu/arm926ejs/davinci/nand.c b/cpu/arm926ejs/davinci/nand.c index 8fd784e79..2aa01d6f7 100644 --- a/cpu/arm926ejs/davinci/nand.c +++ b/cpu/arm926ejs/davinci/nand.c @@ -45,7 +45,7 @@  #include <asm/io.h>  #ifdef CFG_USE_NAND -#if !defined(CFG_NAND_LEGACY) +#if !defined(CONFIG_NAND_LEGACY)  #include <nand.h>  #include <asm/arch/nand_defs.h> diff --git a/cpu/ppc4xx/ndfc.c b/cpu/ppc4xx/ndfc.c index 4f083d95b..72acfd01b 100644 --- a/cpu/ppc4xx/ndfc.c +++ b/cpu/ppc4xx/ndfc.c @@ -31,7 +31,7 @@  #include <common.h> -#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) && \ +#if defined(CONFIG_CMD_NAND) && !defined(CONFIG_NAND_LEGACY) && \  	(defined(CONFIG_440EP) || defined(CONFIG_440GR) ||	     \  	 defined(CONFIG_440EPX) || defined(CONFIG_440GRX) ||	     \  	 defined(CONFIG_405EZ) || defined(CONFIG_405EX) ||	     \ diff --git a/doc/README.nand b/doc/README.nand index 0ad5e18dd..171380e27 100644 --- a/doc/README.nand +++ b/doc/README.nand @@ -184,7 +184,7 @@ We now use a complete rewrite of the NAND code based on what is in  The old NAND handling code has been re-factored and is now confined  to only board-specific files and - unfortunately - to the DoC code  (see below). A new configuration variable has been introduced: -CFG_NAND_LEGACY, which has to be defined in the board config file if +CONFIG_NAND_LEGACY, which has to be defined in the board config file if  that board uses legacy code.  The necessary changes have been made to all affected boards, and no diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/Makefile index ffb316959..19233105a 100644 --- a/drivers/mtd/nand/Makefile +++ b/drivers/mtd/nand/Makefile @@ -25,15 +25,19 @@ include $(TOPDIR)/config.mk  LIB	:= $(obj)libnand.a +ifdef CONFIG_CMD_NAND +ifndef CONFIG_NAND_LEGACY  COBJS-y += nand.o  COBJS-y += nand_base.o -COBJS-y += nand_ids.o -COBJS-y += nand_ecc.o  COBJS-y += nand_bbt.o +COBJS-y += nand_ecc.o +COBJS-y += nand_ids.o  COBJS-y += nand_util.o +endif  COBJS-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_nand.o -COBJS-y += fsl_upm.o +COBJS-$(CONFIG_NAND_FSL_UPM) += fsl_upm.o +endif  COBJS	:= $(COBJS-y)  SRCS	:= $(COBJS:.o=.c) diff --git a/drivers/mtd/nand/diskonchip.c b/drivers/mtd/nand/diskonchip.c index ce197f5ad..4cba8100a 100644 --- a/drivers/mtd/nand/diskonchip.c +++ b/drivers/mtd/nand/diskonchip.c @@ -21,7 +21,7 @@  #include <common.h> -#if !defined(CFG_NAND_LEGACY) +#if !defined(CONFIG_NAND_LEGACY)  #include <linux/kernel.h>  #include <linux/init.h> diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c index e65190304..1a1d8c4e6 100644 --- a/drivers/mtd/nand/fsl_upm.c +++ b/drivers/mtd/nand/fsl_upm.c @@ -11,8 +11,6 @@   */  #include <config.h> - -#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_FSL_UPM)  #include <common.h>  #include <asm/io.h>  #include <asm/errno.h> @@ -150,4 +148,3 @@ int fsl_upm_nand_init(struct nand_chip *chip, struct fsl_upm_nand *fun)  	return 0;  } -#endif /* CONFIG_CMD_NAND */ diff --git a/drivers/mtd/nand/nand.c b/drivers/mtd/nand/nand.c index e44470eb6..ebd2acd02 100644 --- a/drivers/mtd/nand/nand.c +++ b/drivers/mtd/nand/nand.c @@ -22,9 +22,6 @@   */  #include <common.h> - -#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) -  #include <nand.h>  #ifndef CFG_NAND_BASE_LIST @@ -79,5 +76,3 @@ void nand_init(void)  	board_nand_select_device(nand_info[nand_curr_device].priv, nand_curr_device);  #endif  } - -#endif diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index a29ff1146..0913bb874 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -59,8 +59,6 @@  #define ENOTSUPP	524	/* Operation is not supported */ -#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) -  #include <malloc.h>  #include <watchdog.h>  #include <linux/err.h> @@ -2822,6 +2820,3 @@ MODULE_LICENSE("GPL");  MODULE_AUTHOR("Steven J. Hill <sjhill@realitydiluted.com>, Thomas Gleixner <tglx@linutronix.de>");  MODULE_DESCRIPTION("Generic NAND flash driver code");  #endif - -#endif - diff --git a/drivers/mtd/nand/nand_bbt.c b/drivers/mtd/nand/nand_bbt.c index 84479473b..b3b740da6 100644 --- a/drivers/mtd/nand/nand_bbt.c +++ b/drivers/mtd/nand/nand_bbt.c @@ -53,9 +53,6 @@   */  #include <common.h> - -#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) -  #include <malloc.h>  #include <linux/mtd/compat.h>  #include <linux/mtd/mtd.h> @@ -1237,5 +1234,3 @@ int nand_isbad_bbt(struct mtd_info *mtd, loff_t offs, int allowbbt)  EXPORT_SYMBOL(nand_scan_bbt);  EXPORT_SYMBOL(nand_default_bbt);  #endif - -#endif diff --git a/drivers/mtd/nand/nand_ecc.c b/drivers/mtd/nand/nand_ecc.c index e1d5154db..ee1f6cc8a 100644 --- a/drivers/mtd/nand/nand_ecc.c +++ b/drivers/mtd/nand/nand_ecc.c @@ -39,8 +39,6 @@  #include <common.h> -#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) -  /* XXX U-BOOT XXX */  #if 0  #include <linux/types.h> @@ -215,5 +213,3 @@ int nand_correct_data(struct mtd_info *mtd, u_char *dat,  #if 0  EXPORT_SYMBOL(nand_correct_data);  #endif - -#endif diff --git a/drivers/mtd/nand/nand_ids.c b/drivers/mtd/nand/nand_ids.c index f8b96cf02..2ff75c94e 100644 --- a/drivers/mtd/nand/nand_ids.c +++ b/drivers/mtd/nand/nand_ids.c @@ -12,9 +12,6 @@   */  #include <common.h> - -#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) -  #include <linux/mtd/nand.h>  /*  *	Chip ID list @@ -147,4 +144,3 @@ struct nand_manufacturers nand_manuf_ids[] = {  	{NAND_MFR_MICRON, "Micron"},  	{0x0, "Unknown"}  }; -#endif diff --git a/drivers/mtd/nand/nand_util.c b/drivers/mtd/nand/nand_util.c index 02fe914db..22820d55d 100644 --- a/drivers/mtd/nand/nand_util.c +++ b/drivers/mtd/nand/nand_util.c @@ -31,9 +31,6 @@   */  #include <common.h> - -#if defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) -  #include <command.h>  #include <watchdog.h>  #include <malloc.h> @@ -606,5 +603,3 @@ int nand_read_skip_bad(nand_info_t *nand, size_t offset, size_t *length,  	return 0;  } - -#endif /* defined(CONFIG_CMD_NAND) && !defined(CFG_NAND_LEGACY) */ diff --git a/drivers/mtd/nand_legacy/nand_legacy.c b/drivers/mtd/nand_legacy/nand_legacy.c index fafefad60..8f7dc3901 100644 --- a/drivers/mtd/nand_legacy/nand_legacy.c +++ b/drivers/mtd/nand_legacy/nand_legacy.c @@ -15,7 +15,7 @@  #include <asm/io.h>  #include <watchdog.h> -#if defined(CONFIG_CMD_NAND) && defined(CFG_NAND_LEGACY) +#if defined(CONFIG_CMD_NAND) && defined(CONFIG_NAND_LEGACY)  #include <linux/mtd/nand_legacy.h>  #include <linux/mtd/nand_ids.h> diff --git a/fs/jffs2/jffs2_1pass.c b/fs/jffs2/jffs2_1pass.c index 8a06777ae..b5e7ab8b1 100644 --- a/fs/jffs2/jffs2_1pass.c +++ b/fs/jffs2/jffs2_1pass.c @@ -146,7 +146,7 @@ static struct part_info *current_part;  #if (defined(CONFIG_JFFS2_NAND) && \       defined(CONFIG_CMD_NAND) ) -#if defined(CFG_NAND_LEGACY) +#if defined(CONFIG_NAND_LEGACY)  #include <linux/mtd/nand_legacy.h>  #else  #include <nand.h> @@ -161,7 +161,7 @@ static struct part_info *current_part;   *   */ -#if defined(CFG_NAND_LEGACY) +#if defined(CONFIG_NAND_LEGACY)  /* this one defined in nand_legacy.c */  int read_jffs2_nand(size_t start, size_t len,  		size_t * retlen, u_char * buf, int nanddev); @@ -201,7 +201,7 @@ static int read_nand_cached(u32 off, u32 size, u_char *buf)  				}  			} -#if defined(CFG_NAND_LEGACY) +#if defined(CONFIG_NAND_LEGACY)  			if (read_jffs2_nand(nand_cache_off, NAND_CACHE_SIZE,  						&retlen, nand_cache, id->num) < 0 ||  					retlen != NAND_CACHE_SIZE) { diff --git a/fs/jffs2/jffs2_nand_1pass.c b/fs/jffs2/jffs2_nand_1pass.c index 3ce9c9825..9f6de7d32 100644 --- a/fs/jffs2/jffs2_nand_1pass.c +++ b/fs/jffs2/jffs2_nand_1pass.c @@ -1,6 +1,6 @@  #include <common.h> -#if !defined(CFG_NAND_LEGACY) && defined(CONFIG_CMD_JFFS2) +#if !defined(CONFIG_NAND_LEGACY) && defined(CONFIG_CMD_JFFS2)  #include <malloc.h>  #include <linux/stat.h> diff --git a/include/configs/BMW.h b/include/configs/BMW.h index bb7856f67..11d19c6f7 100644 --- a/include/configs/BMW.h +++ b/include/configs/BMW.h @@ -86,7 +86,7 @@  /* CONFIG_CMD_DOC required legacy NAND support */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #if 0  #define CONFIG_PCI		1 diff --git a/include/configs/CPU87.h b/include/configs/CPU87.h index 3879d9b27..d325c4d07 100644 --- a/include/configs/CPU87.h +++ b/include/configs/CPU87.h @@ -191,7 +191,7 @@  #endif -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  /*   * Miscellaneous configurable options diff --git a/include/configs/GEN860T.h b/include/configs/GEN860T.h index 037b115c1..422ed32aa 100644 --- a/include/configs/GEN860T.h +++ b/include/configs/GEN860T.h @@ -280,7 +280,7 @@  #define CFG_FPGA_PROG_FEEDBACK -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  /*   * Verbose help from command monitor. diff --git a/include/configs/IDS8247.h b/include/configs/IDS8247.h index 29dc6234b..029bb9914 100644 --- a/include/configs/IDS8247.h +++ b/include/configs/IDS8247.h @@ -262,7 +262,7 @@   */  #if defined(CONFIG_CMD_NAND) -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_NAND0_BASE 0xE1000000  #define CFG_MAX_NAND_DEVICE     1       /* Max number of NAND devices           */ diff --git a/include/configs/MIP405.h b/include/configs/MIP405.h index d683b87ae..66235e37b 100644 --- a/include/configs/MIP405.h +++ b/include/configs/MIP405.h @@ -88,7 +88,7 @@  #endif -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define	 CFG_HUSH_PARSER  #define	 CFG_PROMPT_HUSH_PS2 "> " diff --git a/include/configs/NETPHONE.h b/include/configs/NETPHONE.h index 27e7ab9bc..6c18b8169 100644 --- a/include/configs/NETPHONE.h +++ b/include/configs/NETPHONE.h @@ -502,7 +502,7 @@  /****************************************************************/  /* NAND */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_NAND_BASE		NAND_BASE  #define CONFIG_MTD_NAND_ECC_JFFS2  #define CONFIG_MTD_NAND_VERIFY_WRITE diff --git a/include/configs/NETTA.h b/include/configs/NETTA.h index 56c76d325..1f1bc540b 100644 --- a/include/configs/NETTA.h +++ b/include/configs/NETTA.h @@ -621,7 +621,7 @@  /****************************************************************/  /* NAND */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_NAND_BASE			NAND_BASE  #define CONFIG_MTD_NAND_VERIFY_WRITE  #define CONFIG_MTD_NAND_UNSAFE diff --git a/include/configs/NETTA2.h b/include/configs/NETTA2.h index b8c48482a..9a1f1d6da 100644 --- a/include/configs/NETTA2.h +++ b/include/configs/NETTA2.h @@ -503,7 +503,7 @@  /****************************************************************/  /* NAND */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_NAND_BASE		NAND_BASE  #define CONFIG_MTD_NAND_ECC_JFFS2  #define CONFIG_MTD_NAND_VERIFY_WRITE diff --git a/include/configs/NETVIA.h b/include/configs/NETVIA.h index 1293fb0e2..c02959418 100644 --- a/include/configs/NETVIA.h +++ b/include/configs/NETVIA.h @@ -397,7 +397,7 @@  /*****************************************************************************/ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #if defined(CONFIG_NETVIA_VERSION) && CONFIG_NETVIA_VERSION >= 2 diff --git a/include/configs/PCIPPC2.h b/include/configs/PCIPPC2.h index 268b0343a..6ebaa85e8 100644 --- a/include/configs/PCIPPC2.h +++ b/include/configs/PCIPPC2.h @@ -84,7 +84,7 @@  #define CONFIG_PCI		1  #define CONFIG_PCI_PNP		1	/* PCI plug-and-play */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  /*   * Miscellaneous configurable options diff --git a/include/configs/PCIPPC6.h b/include/configs/PCIPPC6.h index 250b58604..9202794ab 100644 --- a/include/configs/PCIPPC6.h +++ b/include/configs/PCIPPC6.h @@ -86,7 +86,7 @@  #define CONFIG_PCI		1  #define CONFIG_PCI_PNP		1	/* PCI plug-and-play */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  /*   * Miscellaneous configurable options diff --git a/include/configs/PIP405.h b/include/configs/PIP405.h index 5890012b4..2ceda001c 100644 --- a/include/configs/PIP405.h +++ b/include/configs/PIP405.h @@ -77,7 +77,7 @@  #define CONFIG_CMD_BSP -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define	 CFG_HUSH_PARSER  #define	 CFG_PROMPT_HUSH_PS2 "> " diff --git a/include/configs/PM520.h b/include/configs/PM520.h index 259178f85..5e0bb056d 100644 --- a/include/configs/PM520.h +++ b/include/configs/PM520.h @@ -88,7 +88,7 @@  #if !defined(CONFIG_BOOT_ROM)  /* DoC requires legacy NAND for now */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #endif diff --git a/include/configs/PM826.h b/include/configs/PM826.h index 36e9aa56e..190e2a442 100644 --- a/include/configs/PM826.h +++ b/include/configs/PM826.h @@ -180,7 +180,7 @@  #endif -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  /*   * Disk-On-Chip configuration diff --git a/include/configs/PM828.h b/include/configs/PM828.h index abf593cf7..96c0edf93 100644 --- a/include/configs/PM828.h +++ b/include/configs/PM828.h @@ -183,7 +183,7 @@  /*   * Disk-On-Chip configuration   */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_DOC_SHORT_TIMEOUT  #define CFG_MAX_DOC_DEVICE	1	/* Max number of DOC devices	*/ diff --git a/include/configs/SXNI855T.h b/include/configs/SXNI855T.h index aefc7eecb..c5d538686 100644 --- a/include/configs/SXNI855T.h +++ b/include/configs/SXNI855T.h @@ -195,7 +195,7 @@  */  /* NAND flash support */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CONFIG_MTD_NAND_ECC_JFFS2  #define CFG_MAX_NAND_DEVICE	1	/* Max number of NAND devices	*/  #define SECTORSIZE 512 diff --git a/include/configs/TQM85xx.h b/include/configs/TQM85xx.h index 964193fc0..d84554e37 100644 --- a/include/configs/TQM85xx.h +++ b/include/configs/TQM85xx.h @@ -345,7 +345,7 @@  /* NAND FLASH */  #ifdef CONFIG_NAND -#undef CFG_NAND_LEGACY +#undef CONFIG_NAND_LEGACY  #define CONFIG_NAND_FSL_UPM	1 diff --git a/include/configs/VCMA9.h b/include/configs/VCMA9.h index ad8db613e..02cabb2fb 100644 --- a/include/configs/VCMA9.h +++ b/include/configs/VCMA9.h @@ -254,7 +254,7 @@   */  #if defined(CONFIG_CMD_NAND) -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_MAX_NAND_DEVICE	1	/* Max number of NAND devices		*/  #define SECTORSIZE 512 diff --git a/include/configs/at91rm9200dk.h b/include/configs/at91rm9200dk.h index cd2eae206..fca431e3b 100644 --- a/include/configs/at91rm9200dk.h +++ b/include/configs/at91rm9200dk.h @@ -116,7 +116,7 @@  #define CONFIG_CMD_MII  #define CONFIG_CMD_NAND -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_MAX_NAND_DEVICE	1	/* Max number of NAND devices		*/  #define SECTORSIZE 512 diff --git a/include/configs/delta.h b/include/configs/delta.h index 14fde1a95..1db962aaf 100644 --- a/include/configs/delta.h +++ b/include/configs/delta.h @@ -217,7 +217,7 @@  /*   * NAND Flash   */ -#undef CFG_NAND_LEGACY +#undef CONFIG_NAND_LEGACY  #define CFG_NAND0_BASE		0x0 /* 0x43100040 */ /* 0x10000000 */  #undef CFG_NAND1_BASE diff --git a/include/configs/omap2420h4.h b/include/configs/omap2420h4.h index aac5d0fc7..afdcba411 100644 --- a/include/configs/omap2420h4.h +++ b/include/configs/omap2420h4.h @@ -151,7 +151,7 @@  /*   *  Board NAND Info.   */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_NAND_ADDR 0x04000000  /* physical address to access nand at CS0*/  #define CFG_MAX_NAND_DEVICE 1	/* Max number of NAND devices */ diff --git a/include/configs/stxxtc.h b/include/configs/stxxtc.h index 2bdce303c..37a52cf7e 100644 --- a/include/configs/stxxtc.h +++ b/include/configs/stxxtc.h @@ -449,7 +449,7 @@  /****************************************************************/  /* NAND */ -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  #define CFG_NAND_BASE		NAND_BASE  #define CONFIG_MTD_NAND_ECC_JFFS2  #define CONFIG_MTD_NAND_VERIFY_WRITE diff --git a/include/configs/svm_sc8xx.h b/include/configs/svm_sc8xx.h index 70336b5eb..bbbfa15db 100644 --- a/include/configs/svm_sc8xx.h +++ b/include/configs/svm_sc8xx.h @@ -151,7 +151,7 @@  #define CONFIG_CMD_DATE -#define CFG_NAND_LEGACY +#define CONFIG_NAND_LEGACY  /*   * Miscellaneous configurable options diff --git a/include/linux/mtd/nand_ids.h b/include/linux/mtd/nand_ids.h index d9eb91182..e7aa26df0 100644 --- a/include/linux/mtd/nand_ids.h +++ b/include/linux/mtd/nand_ids.h @@ -28,7 +28,7 @@  #ifndef __LINUX_MTD_NAND_IDS_H  #define __LINUX_MTD_NAND_IDS_H -#ifndef CFG_NAND_LEGACY +#ifndef CONFIG_NAND_LEGACY  #error This module is for the legacy NAND support  #endif diff --git a/include/linux/mtd/nand_legacy.h b/include/linux/mtd/nand_legacy.h index b05e7267e..4494bc569 100644 --- a/include/linux/mtd/nand_legacy.h +++ b/include/linux/mtd/nand_legacy.h @@ -36,7 +36,7 @@  #ifndef __LINUX_MTD_NAND_LEGACY_H  #define __LINUX_MTD_NAND_LEGACY_H -#ifndef CFG_NAND_LEGACY +#ifndef CONFIG_NAND_LEGACY  #error This module is for the legacy NAND support  #endif diff --git a/include/nand.h b/include/nand.h index 764e9f972..4c2b76dd4 100644 --- a/include/nand.h +++ b/include/nand.h @@ -26,7 +26,7 @@  extern void nand_init(void); -#ifndef CFG_NAND_LEGACY +#ifndef CONFIG_NAND_LEGACY  #include <linux/mtd/compat.h>  #include <linux/mtd/mtd.h>  #include <linux/mtd/nand.h> @@ -128,5 +128,5 @@ void board_nand_select_device(struct nand_chip *nand, int chip);  __attribute__((noreturn)) void nand_boot(void); -#endif /* !CFG_NAND_LEGACY */ +#endif /* !CONFIG_NAND_LEGACY */  #endif diff --git a/lib_generic/crc32.c b/lib_generic/crc32.c index 83d1d1d3a..b6a7a9162 100644 --- a/lib_generic/crc32.c +++ b/lib_generic/crc32.c @@ -174,7 +174,7 @@ uint32_t ZEXPORT crc32 (uint32_t crc, const Bytef *buf, uInt len)  #if defined(CONFIG_CMD_JFFS2) || \  	(defined(CONFIG_CMD_NAND) \ -	&& !defined(CFG_NAND_LEGACY)) +	&& !defined(CONFIG_NAND_LEGACY))  /* No ones complement version. JFFS2 (and other things ?)   * don't use ones compliment in their CRC calculations. |