mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 06:00:43 +00:00
board/purple/flash.c: removed unneded variable
removed a variable that was not used Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
This commit is contained in:
parent
388a29d024
commit
75b5bbdef6
1 changed files with 2 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
/*-----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in a new issue