1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-13 08:40:26 +01:00

Merge pull request #20139 from benpicco/gnrc_sixloenc-fix

net/gnrc/netif: set 6LN flag for ethernet if gnrc_sixloenc is used
This commit is contained in:
benpicco 2023-12-07 20:06:13 +00:00 committed by GitHub
commit 81b5cf2e94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,6 +115,9 @@ void gnrc_netif_init_6ln(gnrc_netif_t *netif)
}
/* intentionally falls through */
case NETDEV_TYPE_BLE:
#ifdef MODULE_GNRC_SIXLOENC
case NETDEV_TYPE_ETHERNET:
#endif
#ifdef MODULE_CC110X
case NETDEV_TYPE_CC110X:
#endif