1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

Merge pull request #3171 from cgundogan/fib_autoinit

fib: auto init
This commit is contained in:
Oleg Hahm 2015-06-24 09:33:52 +02:00
commit 4c37e54109

View File

@ -112,6 +112,10 @@
#include "dev_eth_autoinit.h"
#endif
#ifdef MODULE_FIB
#include "net/ng_fib.h"
#endif
#define ENABLE_DEBUG (0)
#include "debug.h"
@ -315,6 +319,10 @@ void auto_init(void)
DEBUG("Auto init UDP module.\n");
ng_udp_init();
#endif
#ifdef MODULE_FIB
DEBUG("Auto init FIB module.\n");
fib_init();
#endif
/* initialize network devices */