Remove empty init functions where not required for backwards compatibility

This commit is contained in:
sg
2015-08-27 21:35:18 +02:00
parent 97ef85c9aa
commit 413bf85dde
4 changed files with 1 additions and 11 deletions

View File

@@ -314,7 +314,7 @@
#endif /* !LWIP_DISABLE_TCP_SANITY_CHECKS */
/**
* Perform Sanity check of user-configurable values, and initialize all modules.
* Initialize all modules.
*/
void
lwip_init(void)
@@ -355,13 +355,6 @@ lwip_init(void)
#if LWIP_DNS
dns_init();
#endif /* LWIP_DNS */
#if LWIP_IPV6
ip6_init();
nd6_init();
#if LWIP_IPV6_MLD
mld6_init();
#endif /* LWIP_IPV6_MLD */
#endif /* LWIP_IPV6 */
#if PPP_SUPPORT
ppp_init();
#endif