[lwIP] Fix the usage issue of NETIF_LINK_CALLBACK.

This commit is contained in:
bernard 2014-06-27 14:49:51 +08:00
parent ee78b6190c
commit b0c94dc4d9
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ static void tcpip_init_done_callback(void *arg)
netif_set_up(ethif->netif);
}
#ifdef LWIP_NETIF_LINK_CALLBACK
#if LWIP_NETIF_LINK_CALLBACK
netif_set_link_up(ethif->netif);
#endif