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 /net/tftp.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 'net/tftp.c')
| -rw-r--r-- | net/tftp.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/net/tftp.c b/net/tftp.c index f7cc1116e..ce6ea3d9f 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -79,7 +79,7 @@ static char default_filename[DEFAULT_NAME_LEN];  static char tftp_filename[MAX_LEN]; -#ifdef CFG_DIRECT_FLASH_TFTP +#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP  extern flash_info_t flash_info[];  #endif @@ -121,10 +121,10 @@ store_block (unsigned block, uchar * src, unsigned len)  {  	ulong offset = block * TftpBlkSize + TftpBlockWrapOffset;  	ulong newsize = offset + len; -#ifdef CFG_DIRECT_FLASH_TFTP +#ifdef CONFIG_SYS_DIRECT_FLASH_TFTP  	int i, rc = 0; -	for (i=0; i<CFG_MAX_FLASH_BANKS; i++) { +	for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; i++) {  		/* start address in flash? */  		if (flash_info[i].flash_id == FLASH_UNKNOWN)  			continue; @@ -143,7 +143,7 @@ store_block (unsigned block, uchar * src, unsigned len)  		}  	}  	else -#endif /* CFG_DIRECT_FLASH_TFTP */ +#endif /* CONFIG_SYS_DIRECT_FLASH_TFTP */  	{  		(void)memcpy((void *)(load_addr + offset), src, len);  	} |