[LWIP] Fix lwip 2.0.2 link status problem when the eth isn't linkup at the first time.

This commit is contained in:
armink 2017-08-01 11:35:42 +08:00
parent 1b7d48134a
commit 0742338fa7
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ static void tcpip_init_done_callback(void *arg)
netif_set_up(ethif->netif);
#endif
if (!(ethif->flags & ETHIF_LINK_PHYUP))
if (ethif->flags & ETHIF_LINK_PHYUP)
{
netif_set_link_up(ethif->netif);
}

View File

@ -180,7 +180,7 @@ static err_t eth_netif_device_init(struct netif *netif)
netif_set_up(ethif->netif);
#endif
if (!(ethif->flags & ETHIF_LINK_PHYUP))
if (ethif->flags & ETHIF_LINK_PHYUP)
{
/* set link_up for this netif */
netif_set_link_up(ethif->netif);