summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2010-06-20 12:32:37 +0200
committerBen Warren <biggerbadderben@gmail.com>2010-06-20 22:13:18 -0700
commit6de27bdc788e7c4532ee0721ae291aeb5df475dc (patch)
treed620c692877c589afe2876596cd43e8e84cb94ad /net
parente397e59e861aa818cda12a23206dde06f7e9f660 (diff)
downloadblackbird-obmc-uboot-6de27bdc788e7c4532ee0721ae291aeb5df475dc.tar.gz
blackbird-obmc-uboot-6de27bdc788e7c4532ee0721ae291aeb5df475dc.zip
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 a number of old, non-CONFIG_NET_MULTI boards. Signed-off-by: Wolfgang Denk <wd@denx.de> Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
Diffstat (limited to 'net')
-rw-r--r--net/eth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/eth.c b/net/eth.c
index 45e4a26d6f..83d559c120 100644
--- a/net/eth.c
+++ b/net/eth.c
@@ -60,6 +60,8 @@ int eth_getenv_enetaddr_by_index(int index, uchar *enetaddr)
return eth_getenv_enetaddr(enetvar, enetaddr);
}
+#ifdef CONFIG_NET_MULTI
+
static int eth_mac_skip(int index)
{
char enetvar[15];
@@ -68,8 +70,6 @@ static int eth_mac_skip(int index)
return ((skip_state = getenv(enetvar)) != NULL);
}
-#ifdef CONFIG_NET_MULTI
-
/*
* CPU and board-specific Ethernet initializations. Aliased function
* signals caller to move on
OpenPOWER on IntegriCloud