From 2c76dbf351e38ed0c015a233fad8f7160f3f7cf8 Mon Sep 17 00:00:00 2001 From: Jose Alamos Date: Wed, 1 Jun 2022 14:55:29 +0200 Subject: [PATCH] gnrc_netif: move `option_tested` to default init function --- sys/net/gnrc/netif/gnrc_netif.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/net/gnrc/netif/gnrc_netif.c b/sys/net/gnrc/netif/gnrc_netif.c index f6bcbf7eec..b8c1edd1a7 100644 --- a/sys/net/gnrc/netif/gnrc_netif.c +++ b/sys/net/gnrc/netif/gnrc_netif.c @@ -1597,6 +1597,9 @@ int gnrc_netif_default_init(gnrc_netif_t *netif) netif->cur_hl = CONFIG_GNRC_NETIF_DEFAULT_HL; #ifdef MODULE_GNRC_IPV6_NIB gnrc_ipv6_nib_init_iface(netif); +#endif +#if DEVELHELP + assert(options_tested); #endif return 0; } @@ -1816,9 +1819,6 @@ static void *_gnrc_netif_thread(void *args) LOG_ERROR("gnrc_netif: init failed: %d\n", ctx->result); return NULL; } -#if DEVELHELP - assert(options_tested); -#endif #ifdef MODULE_NETSTATS_L2 memset(&netif->stats, 0, sizeof(netstats_t)); #endif