mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
drivers/net/eepro100.c: fix GCC 4.6 build warnings
Fix: eepro100.c: In function 'read_hw_addr': eepro100.c:926:6: warning: variable 'eeprom' set but not used [-Wunused-but-set-variable] Signed-off-by: Wolfgang Denk <wd@denx.de>
This commit is contained in:
parent
a0f21ff18a
commit
3d458d2dfb
1 changed files with 0 additions and 2 deletions
|
@ -923,7 +923,6 @@ static void purge_tx_ring (struct eth_device *dev)
|
|||
|
||||
static void read_hw_addr (struct eth_device *dev, bd_t * bis)
|
||||
{
|
||||
u16 eeprom[0x40];
|
||||
u16 sum = 0;
|
||||
int i, j;
|
||||
int addr_len = read_eeprom (dev, 0, 6) == 0xffff ? 8 : 6;
|
||||
|
@ -931,7 +930,6 @@ static void read_hw_addr (struct eth_device *dev, bd_t * bis)
|
|||
for (j = 0, i = 0; i < 0x40; i++) {
|
||||
u16 value = read_eeprom (dev, i, addr_len);
|
||||
|
||||
eeprom[i] = value;
|
||||
sum += value;
|
||||
if (i < 3) {
|
||||
dev->enetaddr[j++] = value;
|
||||
|
|
Loading…
Reference in a new issue