diff options
Diffstat (limited to 'include/configs/utx8245.h')
| -rw-r--r-- | include/configs/utx8245.h | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/include/configs/utx8245.h b/include/configs/utx8245.h index 2844c6354..4355e1c81 100644 --- a/include/configs/utx8245.h +++ b/include/configs/utx8245.h @@ -396,16 +396,16 @@ protect on ${u-boot_startaddr} ${u-boot_endaddr}"  #if 1	/* AMD AM29LV033C */  #define CFG_MAX_FLASH_SECT	64		/* Max number of sectors in one bank */ -#define CFG_ENV_ADDR		0xFFBF0000	/* flash sector SA63 */ -#define CFG_ENV_SECT_SIZE	(64*1024)	/* Size of the Environment Sector */ +#define CONFIG_ENV_ADDR		0xFFBF0000	/* flash sector SA63 */ +#define CONFIG_ENV_SECT_SIZE	(64*1024)	/* Size of the Environment Sector */  #else	/* AMD AM29LV116D */  #define CFG_MAX_FLASH_SECT	35	/* Max number of sectors in one bank */ -#define CFG_ENV_ADDR		0xFF9FA000	/* flash sector SA33 */ -#define CFG_ENV_SECT_SIZE	(8*1024)	/* Size of the Environment Sector */ +#define CONFIG_ENV_ADDR		0xFF9FA000	/* flash sector SA33 */ +#define CONFIG_ENV_SECT_SIZE	(8*1024)	/* Size of the Environment Sector */  #endif /* #if */ -#define CFG_ENV_SIZE		CFG_ENV_SECT_SIZE		/* Size of the Environment */ -#define CFG_ENV_OFFSET		0			/* starting right at the beginning */ +#define CONFIG_ENV_SIZE		CONFIG_ENV_SECT_SIZE		/* Size of the Environment */ +#define CONFIG_ENV_OFFSET		0			/* starting right at the beginning */  #define CFG_FLASH_ERASE_TOUT	120000	/* Timeout for Flash Erase (in ms)	*/  #define CFG_FLASH_WRITE_TOUT	500		/* Timeout for Flash Write (in ms)	*/ |