diff options
Diffstat (limited to 'board/mousse/flash.c')
| -rw-r--r-- | board/mousse/flash.c | 8 | 
1 files changed, 1 insertions, 7 deletions
| diff --git a/board/mousse/flash.c b/board/mousse/flash.c index d729f33f9..cc405356d 100644 --- a/board/mousse/flash.c +++ b/board/mousse/flash.c @@ -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); |