diff options
| author | Wolfgang Denk <wd@denx.de> | 2011-11-05 05:13:00 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-11-07 22:18:13 +0100 | 
| commit | a3cfb39b72d833fc60f361415dd1e26af3f8365c (patch) | |
| tree | 352f3ba161ed6af3176aea4729a68375cf2a6860 /board/mousse/flash.c | |
| parent | 17f81f62fdb96d354033e73ea96649f4a1fd5b03 (diff) | |
| download | olio-uboot-2014.01-a3cfb39b72d833fc60f361415dd1e26af3f8365c.tar.xz olio-uboot-2014.01-a3cfb39b72d833fc60f361415dd1e26af3f8365c.zip | |
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>
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); |