diff options
Diffstat (limited to 'board/siemens/pcu_e/flash.c')
| -rw-r--r-- | board/siemens/pcu_e/flash.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/siemens/pcu_e/flash.c b/board/siemens/pcu_e/flash.c index 05c364bb2..5b812cb36 100644 --- a/board/siemens/pcu_e/flash.c +++ b/board/siemens/pcu_e/flash.c @@ -24,7 +24,7 @@  #include <common.h>  #include <mpc8xx.h> -#if defined(CFG_ENV_IS_IN_FLASH) +#if defined(CONFIG_ENV_IS_IN_FLASH)  # ifndef  CFG_ENV_ADDR  #  define CFG_ENV_ADDR	(CFG_FLASH_BASE + CFG_ENV_OFFSET)  # endif @@ -151,7 +151,7 @@ unsigned long flash_init (void)  		      PCU_MONITOR_BASE+monitor_flash_len-1,  		      &flash_info[0]); -#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, @@ -178,7 +178,7 @@ unsigned long flash_init (void)  		flash_info[1].size = size_b1; -#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, |