mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 21:51:31 +00:00
board/mousse/flash.c: Fix GCC 4.6 buil warnings
Fix: flash.c: In function 'flash_erase': flash.c:780:18: warning: variable 'l_sect' set but not used [-Wunused-but-set-variable] flash.c:779:11: warning: variable 'addr' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
17f81f62fd
commit
a3cfb39b72
1 changed files with 1 additions and 7 deletions
|
@ -776,8 +776,7 @@ void flash_print_info (flash_info_t * info)
|
|||
*/
|
||||
int flash_erase (flash_info_t * info, int s_first, int s_last)
|
||||
{
|
||||
vu_long *addr = (vu_long *) (info->start[0]);
|
||||
int prot, sect, l_sect;
|
||||
int prot, sect;
|
||||
flash_dev_t *dev = NULL;
|
||||
|
||||
if ((s_first < 0) || (s_first > s_last)) {
|
||||
|
@ -803,17 +802,12 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)
|
|||
printf ("\n");
|
||||
}
|
||||
|
||||
l_sect = -1;
|
||||
|
||||
/* Start erase on unprotected sectors */
|
||||
dev = getFlashDevFromInfo (info);
|
||||
if (dev) {
|
||||
printf ("Erase FLASH[%s] -%d sectors:", dev->name, dev->sectors);
|
||||
for (sect = s_first; sect <= s_last; sect++) {
|
||||
if (info->protect[sect] == 0) { /* not protected */
|
||||
addr = (vu_long *) (dev->base);
|
||||
/* printf("erase_sector: sector=%d, addr=0x%x\n",
|
||||
sect, addr); */
|
||||
printf (".");
|
||||
if (ERROR == flashEraseSector (dev, sect)) {
|
||||
printf ("ERROR: could not erase sector %d on FLASH[%s]\n", sect, dev->name);
|
||||
|
|
Loading…
Add table
Reference in a new issue