diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:00 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:00 +0200 |
commit | 93f6d72544da4510a146bc4c93d609b0116cde37 (patch) | |
tree | 5295b96f23662d7cf889a2c929fef8b2567710cc /common/env_nowhere.c | |
parent | 2556ef78113b5f089dfcac5da90bf31dd568397b (diff) | |
download | u-boot-imx-93f6d72544da4510a146bc4c93d609b0116cde37.zip u-boot-imx-93f6d72544da4510a146bc4c93d609b0116cde37.tar.gz u-boot-imx-93f6d72544da4510a146bc4c93d609b0116cde37.tar.bz2 |
rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common/env_nowhere.c')
-rw-r--r-- | common/env_nowhere.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/env_nowhere.c b/common/env_nowhere.c index 17ecc77..8dd4867 100644 --- a/common/env_nowhere.c +++ b/common/env_nowhere.c @@ -26,7 +26,7 @@ #include <common.h> -#if defined(CFG_ENV_IS_NOWHERE) /* Environment is nowhere */ +#if defined(CONFIG_ENV_IS_NOWHERE) /* Environment is nowhere */ #include <command.h> #include <environment.h> @@ -62,4 +62,4 @@ int env_init(void) return (0); } -#endif /* CFG_ENV_IS_NOWHERE) */ +#endif /* CONFIG_ENV_IS_NOWHERE) */ |