net: Remove duplicate bootfile syncing functionality
The bootfile env var is already kept up to date by the callback in net.c so there is no need to poll it too. Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
c0a93440a7
commit
2d1febf7d5
12
net/eth.c
12
net/eth.c
|
@ -60,16 +60,6 @@ static inline int eth_setenv_enetaddr_by_index(const char *base_name, int index,
|
||||||
return eth_setenv_enetaddr(enetvar, enetaddr);
|
return eth_setenv_enetaddr(enetvar, enetaddr);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void eth_env_init(void)
|
|
||||||
{
|
|
||||||
const char *s;
|
|
||||||
|
|
||||||
s = getenv("bootfile");
|
|
||||||
if (s != NULL)
|
|
||||||
copy_filename(net_boot_file_name, s,
|
|
||||||
sizeof(net_boot_file_name));
|
|
||||||
}
|
|
||||||
|
|
||||||
static int eth_mac_skip(int index)
|
static int eth_mac_skip(int index)
|
||||||
{
|
{
|
||||||
char enetvar[15];
|
char enetvar[15];
|
||||||
|
@ -104,8 +94,6 @@ static void eth_common_init(void)
|
||||||
phy_init();
|
phy_init();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
eth_env_init();
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If board-specific initialization exists, call it.
|
* If board-specific initialization exists, call it.
|
||||||
* If not, call a CPU-specific one
|
* If not, call a CPU-specific one
|
||||||
|
|
Loading…
Reference in New Issue