[U-Boot] [PATCH V2] env_sf: remove warning introduced with last patch

Stefano Babic sbabic at denx.de
Fri Oct 29 11:49:45 CEST 2010


Signed-off-by: Stefano Babic <sbabic at denx.de>
---
 common/env_sf.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/common/env_sf.c b/common/env_sf.c
index a597b24..47c6a70 100644
--- a/common/env_sf.c
+++ b/common/env_sf.c
@@ -272,7 +272,7 @@ int saveenv(void)
 	u32 saved_size, saved_offset;
 	char *saved_buffer = NULL;
 	u32 sector = 1;
-	int ret;
+	int ret = 1;
 	env_t	env_new;
 	char	*res;
 	ssize_t	len;
@@ -293,7 +293,6 @@ int saveenv(void)
 		saved_offset = CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE;
 		saved_buffer = malloc(saved_size);
 		if (!saved_buffer) {
-			ret = 1;
 			goto done;
 		}
 		ret = spi_flash_read(env_flash, saved_offset,
-- 
1.7.1



More information about the U-Boot mailing list