From: Frans Meulenbroeks Date: Sun, 1 Aug 2010 08:10:41 +0000 (+0200) Subject: board/purple/flash.c: removed unneded variable X-Git-Tag: v2010.09-rc1~41 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75b5bbdef67678560a12efa8e135b40b77dcde48;p=kernel%2Fu-boot.git board/purple/flash.c: removed unneded variable removed a variable that was not used Signed-off-by: Frans Meulenbroeks --- diff --git a/board/purple/flash.c b/board/purple/flash.c index 37c7bec..5cee35e 100644 --- a/board/purple/flash.c +++ b/board/purple/flash.c @@ -448,7 +448,6 @@ int flash_erase (flash_info_t *info, int s_first, int s_last) FPWV *addr; int flag, prot, sect; ulong start, now, last; - int rcode = 0; FUNCPTR_WR absEntry; load_cmd(IN_RAM_CMD_WRITE); @@ -490,7 +489,7 @@ int flash_erase (flash_info_t *info, int s_first, int s_last) last = get_timer(0); /* Start erase on unprotected sectors */ - for (sect = s_first; sect<=s_last && rcode == 0; sect++) { + for (sect = s_first; sect<=s_last; sect++) { if (info->protect[sect] != 0) /* protected, skip it */ continue; @@ -523,7 +522,7 @@ int flash_erase (flash_info_t *info, int s_first, int s_last) } printf (" done\n"); - return rcode; + return 0; } /*-----------------------------------------------------------------------