diff options
Diffstat (limited to 'board/lwmon/flash.c')
| -rw-r--r-- | board/lwmon/flash.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/lwmon/flash.c b/board/lwmon/flash.c index b894887c9..7e4acc248 100644 --- a/board/lwmon/flash.c +++ b/board/lwmon/flash.c @@ -26,7 +26,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 @@ -130,7 +130,7 @@ 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, @@ -163,7 +163,7 @@ unsigned long flash_init (void)  			      &flash_info[1]);  #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, |