diff options
| author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:47:58 +0200 | 
|---|---|---|
| committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:47:58 +0200 | 
| commit | 51bfee192099206a4397f15f3b93516e01f58ab0 (patch) | |
| tree | c9a013e84f102cb7cd1777131691315178f6b6b0 /common/env_nand.c | |
| parent | d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9 (diff) | |
| download | olio-uboot-2014.01-51bfee192099206a4397f15f3b93516e01f58ab0.tar.xz olio-uboot-2014.01-51bfee192099206a4397f15f3b93516e01f58ab0.zip | |
rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common/env_nand.c')
| -rw-r--r-- | common/env_nand.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/env_nand.c b/common/env_nand.c index a8f0de7ae..53e31834c 100644 --- a/common/env_nand.c +++ b/common/env_nand.c @@ -34,7 +34,7 @@  #include <common.h> -#if defined(CFG_ENV_IS_IN_NAND) /* Environment is in Nand Flash */ +#if defined(CONFIG_ENV_IS_IN_NAND) /* Environment is in Nand Flash */  #include <command.h>  #include <environment.h> @@ -367,4 +367,4 @@ static void use_default()  }  #endif -#endif /* CFG_ENV_IS_IN_NAND */ +#endif /* CONFIG_ENV_IS_IN_NAND */ |