diff options
Diffstat (limited to 'board/sandpoint/flash.c')
| -rw-r--r-- | board/sandpoint/flash.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/board/sandpoint/flash.c b/board/sandpoint/flash.c index cf0667993..60cb1915e 100644 --- a/board/sandpoint/flash.c +++ b/board/sandpoint/flash.c @@ -32,7 +32,7 @@  flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips    */ -#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 @@ -230,7 +230,7 @@ flash_init(void)  		&flash_info[0]);  #endif -#if defined(CFG_ENV_IS_IN_FLASH) && defined(CFG_ENV_ADDR) +#if defined(CONFIG_ENV_IS_IN_FLASH) && defined(CFG_ENV_ADDR)      flash_protect(FLAG_PROTECT_SET,  		CFG_ENV_ADDR,  		CFG_ENV_ADDR + CFG_ENV_SIZE - 1, |