diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-10-16 15:01:15 +0200 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:03 +0200 | 
| commit | 6d0f6bcf337c5261c08fabe12982178c2c489d76 (patch) | |
| tree | ae13958ffa9c6b58c2ea97aac07a4ad2f04a350f /board/netvia/netvia.c | |
| parent | 71edc271816ec82cf0550dd6980be2da3cc2ad9e (diff) | |
| download | olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.tar.xz olio-uboot-2014.01-6d0f6bcf337c5261c08fabe12982178c2c489d76.zip | |
rename CFG_ macros to CONFIG_SYS
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'board/netvia/netvia.c')
| -rw-r--r-- | board/netvia/netvia.c | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/board/netvia/netvia.c b/board/netvia/netvia.c index 4140bac86..0b032c4a7 100644 --- a/board/netvia/netvia.c +++ b/board/netvia/netvia.c @@ -247,7 +247,7 @@ int checkboard(void)  phys_size_t initdram(int board_type)  { -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	volatile memctl8xx_t *memctl = &immap->im_memctl;  	long int size; @@ -256,17 +256,17 @@ phys_size_t initdram(int board_type)  	/*  	 * Preliminary prescaler for refresh  	 */ -	memctl->memc_mptpr = CFG_MPTPR_1BK_8K; +	memctl->memc_mptpr = CONFIG_SYS_MPTPR_1BK_8K;  	memctl->memc_mar = MAR_SDRAM_INIT;	/* 32-bit address to be output on the address bus if AMX = 0b11 */      /*       * Map controller bank 3 to the SDRAM bank at preliminary address.       */ -	memctl->memc_or3 = CFG_OR3_PRELIM; -	memctl->memc_br3 = CFG_BR3_PRELIM; +	memctl->memc_or3 = CONFIG_SYS_OR3_PRELIM; +	memctl->memc_br3 = CONFIG_SYS_BR3_PRELIM; -	memctl->memc_mamr = CFG_MAMR_9COL & ~MAMR_PTAE;	/* no refresh yet */ +	memctl->memc_mamr = CONFIG_SYS_MAMR_9COL & ~MAMR_PTAE;	/* no refresh yet */  	udelay(200); @@ -282,7 +282,7 @@ phys_size_t initdram(int board_type)  	udelay(1000); -	memctl->memc_mamr = CFG_MAMR_9COL; +	memctl->memc_mamr = CONFIG_SYS_MAMR_9COL;  	size = SDRAM_MAX_SIZE; @@ -358,7 +358,7 @@ int misc_init_r(void)  int board_early_init_f(void)  { -	volatile immap_t *immap = (immap_t *) CFG_IMMR; +	volatile immap_t *immap = (immap_t *) CONFIG_SYS_IMMR;  	volatile iop8xx_t *ioport = &immap->im_ioport;  	volatile cpm8xx_t *cpm = &immap->im_cpm;  	volatile memctl8xx_t *memctl = &immap->im_memctl; @@ -421,11 +421,11 @@ int board_early_init_f(void)  #include <linux/mtd/nand_legacy.h>  extern ulong nand_probe(ulong physadr); -extern struct nand_chip nand_dev_desc[CFG_MAX_NAND_DEVICE]; +extern struct nand_chip nand_dev_desc[CONFIG_SYS_MAX_NAND_DEVICE];  void nand_init(void)  { -	unsigned long totlen = nand_probe(CFG_NAND_BASE); +	unsigned long totlen = nand_probe(CONFIG_SYS_NAND_BASE);  	printf ("%4lu MB\n", totlen >> 20);  } |