Skip to content
Snippets Groups Projects
Commit cee9a9c1 authored by Martine Lenders's avatar Martine Lenders
Browse files

gnrc_ipv6_nib: fix nrfmin module check

The module is called `nrfmin` not `netdev_nrfmin`. As such this compile
path was never included, even if the `nrfmin` module was present.
parent 101fb139
No related branches found
No related tags found
No related merge requests found
......@@ -190,11 +190,11 @@ static inline unsigned _get_l2addr_len(gnrc_netif_t *netif,
(void)opt;
return ETHERNET_ADDR_LEN;
#endif /* MODULE_NETDEV_ETH */
#ifdef MODULE_NETDEV_NRFMIN
#ifdef MODULE_NRFMIN
case NETDEV_TYPE_NRFMIN:
(void)opt;
return sizeof(uint16_t);
#endif /* MODULE_NETDEV_NRFMIN */
#endif /* MODULE_NRFMIN */
#ifdef MODULE_NETDEV_IEEE802154
case NETDEV_TYPE_IEEE802154:
switch (opt->len) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment