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 | 057c849c45b9ee19df8ff3acdeee66be52819962 (patch) | |
tree | 5863e9c6817691c76b843a07069ef6945b822402 /common/env_dataflash.c | |
parent | d1034bc8db60fa6bd419328baf6a75cb0645cee8 (diff) | |
download | u-boot-imx-057c849c45b9ee19df8ff3acdeee66be52819962.zip u-boot-imx-057c849c45b9ee19df8ff3acdeee66be52819962.tar.gz u-boot-imx-057c849c45b9ee19df8ff3acdeee66be52819962.tar.bz2 |
rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'common/env_dataflash.c')
-rw-r--r-- | common/env_dataflash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/env_dataflash.c b/common/env_dataflash.c index 2945364..1d55a27 100644 --- a/common/env_dataflash.c +++ b/common/env_dataflash.c @@ -19,7 +19,7 @@ */ #include <common.h> -#if defined(CFG_ENV_IS_IN_DATAFLASH) /* Environment is in DataFlash */ +#if defined(CONFIG_ENV_IS_IN_DATAFLASH) /* Environment is in DataFlash */ #include <command.h> #include <environment.h> @@ -101,4 +101,4 @@ int env_init(void) return (0); } -#endif /* CFG_ENV_IS_IN_DATAFLASH */ +#endif /* CONFIG_ENV_IS_IN_DATAFLASH */ |