Skip to content

Commit

Permalink
Net: Remove redundant CONFIG_NET_MULTI directives
Browse files Browse the repository at this point in the history
All are within an #ifdef CONFIG_NET_MULTI block already

Signed-off-by: Ben Warren <[email protected]>
  • Loading branch information
ben-skyportsystems committed Oct 12, 2010
1 parent b0a75d7 commit 68e1ede
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions net/eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,13 @@ int eth_initialize(bd_t *bis)
dev = dev->next;
} while(dev != eth_devices);

#ifdef CONFIG_NET_MULTI
/* update current ethernet name */
if (eth_current) {
char *act = getenv("ethact");
if (act == NULL || strcmp(act, eth_current->name) != 0)
setenv("ethact", eth_current->name);
} else
setenv("ethact", NULL);
#endif

putc ('\n');
}
Expand Down Expand Up @@ -441,7 +439,7 @@ int eth_receive(volatile void *packet, int length)
void eth_try_another(int first_restart)
{
static struct eth_device *first_failed = NULL;
char *ethrotate;
char *ethrotate, *act;

/*
* Do not rotate between network interfaces when
Expand All @@ -460,21 +458,16 @@ void eth_try_another(int first_restart)

eth_current = eth_current->next;

#ifdef CONFIG_NET_MULTI
/* update current ethernet name */
{
char *act = getenv("ethact");
if (act == NULL || strcmp(act, eth_current->name) != 0)
setenv("ethact", eth_current->name);
}
#endif
act = getenv("ethact");
if (act == NULL || strcmp(act, eth_current->name) != 0)
setenv("ethact", eth_current->name);

if (first_failed == eth_current) {
NetRestartWrap = 1;
}
}

#ifdef CONFIG_NET_MULTI
void eth_set_current(void)
{
static char *act = NULL;
Expand All @@ -501,7 +494,6 @@ void eth_set_current(void)

setenv("ethact", eth_current->name);
}
#endif

char *eth_get_name (void)
{
Expand Down

0 comments on commit 68e1ede

Please sign in to comment.