Skip to content
Snippets Groups Projects
Commit 6efb06f1 authored by Hauke Petersen's avatar Hauke Petersen
Browse files

sys/auto_init: added initialization for Skald

parent 49bd85d0
No related branches found
No related tags found
No related merge requests found
...@@ -80,6 +80,10 @@ ...@@ -80,6 +80,10 @@
#include "net/gnrc/ipv6/nib.h" #include "net/gnrc/ipv6/nib.h"
#endif #endif
#ifdef MODULE_SKALD
#include "net/skald.h"
#endif
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"
...@@ -151,6 +155,10 @@ void auto_init(void) ...@@ -151,6 +155,10 @@ void auto_init(void)
DEBUG("Auto init gnrc_ipv6_nib module.\n"); DEBUG("Auto init gnrc_ipv6_nib module.\n");
gnrc_ipv6_nib_init(); gnrc_ipv6_nib_init();
#endif #endif
#ifdef MODULE_SKALD
DEBUG("Auto init Skald\n");
skald_init();
#endif
/* initialize network devices */ /* initialize network devices */
#ifdef MODULE_AUTO_INIT_GNRC_NETIF #ifdef MODULE_AUTO_INIT_GNRC_NETIF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment