mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
board/gw8260/flash.c: Fix GCC 4.6 build warning
Fix: flash.c: In function 'flash_init': flash.c:81:16: warning: variable 'size' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: Oliver Brown <obrown@adventnetworks.com>
This commit is contained in:
parent
6cfdd30e39
commit
5a5f34a1e0
1 changed files with 1 additions and 2 deletions
|
@ -78,7 +78,6 @@ static int write_word (flash_info_t *info, ulong dest, ulong data);
|
|||
*/
|
||||
unsigned long flash_init(void)
|
||||
{
|
||||
unsigned long size;
|
||||
int i;
|
||||
|
||||
/* Init: no FLASHes known */
|
||||
|
@ -86,7 +85,7 @@ unsigned long flash_init(void)
|
|||
flash_info[i].flash_id = FLASH_UNKNOWN;
|
||||
|
||||
/* for now, only support the 4 MB Flash SIMM */
|
||||
size = flash_get_size((vu_long *) CONFIG_SYS_FLASH0_BASE,
|
||||
(void)flash_get_size((vu_long *) CONFIG_SYS_FLASH0_BASE,
|
||||
&flash_info[0]);
|
||||
/*
|
||||
* protect monitor and environment sectors
|
||||
|
|
Loading…
Add table
Reference in a new issue