mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-27 07:01:24 +00:00
net/eth.c: eth_mac_skip() is only needed when CONFIG_NET_MULTI is set
Move it inside the #ifdef CONFIG_NET_MULTI to avoid eth.c:64: warning: 'eth_mac_skip' defined but not used messages from anumber of old, non-CONFIG_NET_MULTI boards. Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: Ben Warren <biggerbadderben@gmail.com>
This commit is contained in:
parent
9312bba01a
commit
9c00b2f0a3
1 changed files with 2 additions and 2 deletions
|
@ -60,6 +60,8 @@ int eth_getenv_enetaddr_by_index(int index, uchar *enetaddr)
|
||||||
return eth_getenv_enetaddr(enetvar, enetaddr);
|
return eth_getenv_enetaddr(enetvar, enetaddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef CONFIG_NET_MULTI
|
||||||
|
|
||||||
static int eth_mac_skip(int index)
|
static int eth_mac_skip(int index)
|
||||||
{
|
{
|
||||||
char enetvar[15];
|
char enetvar[15];
|
||||||
|
@ -68,8 +70,6 @@ static int eth_mac_skip(int index)
|
||||||
return ((skip_state = getenv(enetvar)) != NULL);
|
return ((skip_state = getenv(enetvar)) != NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_NET_MULTI
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* CPU and board-specific Ethernet initializations. Aliased function
|
* CPU and board-specific Ethernet initializations. Aliased function
|
||||||
* signals caller to move on
|
* signals caller to move on
|
||||||
|
|
Loading…
Reference in a new issue