mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
net/gnrc_netif/nrfmin: put NETOPT assert at the right place
NETOPT depends on GNRC_SIXLOWPAN and should be moved inside the corresponding preprocessor conditional code
This commit is contained in:
parent
10b783d82c
commit
5fa2528185
@ -1212,12 +1212,12 @@ static void _test_options(gnrc_netif_t *netif)
|
||||
assert(netif->flags & GNRC_NETIF_FLAGS_HAS_L2ADDR);
|
||||
assert((IEEE802154_SHORT_ADDRESS_LEN == netif->l2addr_len) ||
|
||||
(IEEE802154_LONG_ADDRESS_LEN == netif->l2addr_len));
|
||||
assert(-ENOTSUP != netif->dev->driver->get(netif->dev, NETOPT_PROTO,
|
||||
&tmp, sizeof(tmp)));
|
||||
#ifdef MODULE_GNRC_IPV6
|
||||
#ifdef MODULE_GNRC_SIXLOWPAN
|
||||
assert(netif->ipv6.mtu == IPV6_MIN_MTU);
|
||||
assert(netif->sixlo.max_frag_size > 0);
|
||||
assert(-ENOTSUP != netif->dev->driver->get(netif->dev, NETOPT_PROTO,
|
||||
&tmp, sizeof(tmp)));
|
||||
#else /* MODULE_GNRC_SIXLOWPAN */
|
||||
assert(netif->ipv6.mtu < UINT16_MAX);
|
||||
#endif /* MODULE_GNRC_SIXLOWPAN */
|
||||
|
Loading…
Reference in New Issue
Block a user