diff options
Diffstat (limited to 'board/kup/common/flash.c')
| -rw-r--r-- | board/kup/common/flash.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/board/kup/common/flash.c b/board/kup/common/flash.c index 903c88f06..7688ce2c4 100644 --- a/board/kup/common/flash.c +++ b/board/kup/common/flash.c @@ -24,8 +24,8 @@  #include <common.h>  #include <mpc8xx.h> -#ifndef	CFG_ENV_ADDR -#define CFG_ENV_ADDR	(CFG_FLASH_BASE + CFG_ENV_OFFSET) +#ifndef	CONFIG_ENV_ADDR +#define CONFIG_ENV_ADDR	(CFG_FLASH_BASE + CONFIG_ENV_OFFSET)  #endif  #define CONFIG_FLASH_16BIT @@ -78,11 +78,11 @@ unsigned long flash_init (void)  		      &flash_info[0]);  #endif -#ifdef	CFG_ENV_IS_IN_FLASH +#ifdef	CONFIG_ENV_IS_IN_FLASH  	/* ENV protection ON by default */  	flash_protect(FLAG_PROTECT_SET, -		      CFG_ENV_ADDR, -		      CFG_ENV_ADDR+CFG_ENV_SIZE-1, +		      CONFIG_ENV_ADDR, +		      CONFIG_ENV_ADDR+CONFIG_ENV_SIZE-1,  		      &flash_info[0]);  #endif |