diff options
Diffstat (limited to 'include/configs/pcs440ep.h')
| -rw-r--r-- | include/configs/pcs440ep.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/include/configs/pcs440ep.h b/include/configs/pcs440ep.h index 368a66b95..62f13f295 100644 --- a/include/configs/pcs440ep.h +++ b/include/configs/pcs440ep.h @@ -110,15 +110,15 @@  #define CFG_FLASH_EMPTY_INFO		/* print 'E' for empty sector on flinfo */  #ifdef CONFIG_ENV_IS_IN_FLASH -#define CFG_ENV_SECT_SIZE	0x10000	/* size of one complete sector		*/ -#define CFG_ENV_ADDR		(CFG_MONITOR_BASE-CFG_ENV_SECT_SIZE) -#define CFG_ENV_SIZE		0x2000	/* Total Size of Environment Sector	*/ +#define CONFIG_ENV_SECT_SIZE	0x10000	/* size of one complete sector		*/ +#define CONFIG_ENV_ADDR		(CFG_MONITOR_BASE-CONFIG_ENV_SECT_SIZE) +#define CONFIG_ENV_SIZE		0x2000	/* Total Size of Environment Sector	*/  #define CONFIG_ENV_OVERWRITE	1  /* Address and size of Redundant Environment Sector	*/ -#define CFG_ENV_ADDR_REDUND	(CFG_ENV_ADDR-CFG_ENV_SECT_SIZE) -#define CFG_ENV_SIZE_REDUND	(CFG_ENV_SIZE) +#define CONFIG_ENV_ADDR_REDUND	(CONFIG_ENV_ADDR-CONFIG_ENV_SECT_SIZE) +#define CONFIG_ENV_SIZE_REDUND	(CONFIG_ENV_SIZE)  #endif /* CONFIG_ENV_IS_IN_FLASH */  #define ENV_NAME_REVLEV	"revision_level" |