diff options
author | wdenk <wdenk> | 2003-03-06 14:23:06 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-03-06 14:23:06 +0000 |
commit | 500545cc6b83958209128bffa825b3c842a21a4e (patch) | |
tree | 10c2bfdfb0bddd973b38e4bea98c638e5d1e04bc /common/env_flash.c | |
parent | 47cd00fa707af9de76408b69d3e911717dbbfab1 (diff) | |
download | u-boot-midas-500545cc6b83958209128bffa825b3c842a21a4e.tar.gz u-boot-midas-500545cc6b83958209128bffa825b3c842a21a4e.tar.bz2 u-boot-midas-500545cc6b83958209128bffa825b3c842a21a4e.zip |
Fix problem with default #defines
Cleanup compiler warning
Diffstat (limited to 'common/env_flash.c')
-rw-r--r-- | common/env_flash.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/common/env_flash.c b/common/env_flash.c index 19e2282643..426d01b19b 100644 --- a/common/env_flash.c +++ b/common/env_flash.c @@ -160,9 +160,11 @@ int env_init(void) #ifdef CMD_SAVEENV int saveenv(void) { + char *saved_data = NULL; int rc = 1; +#if CFG_ENV_SECT_SIZE > CFG_ENV_SIZE ulong up_data = 0; - char *saved_data = NULL; +#endif debug ("Protect off %08lX ... %08lX\n", (ulong)flash_addr, end_addr); |