diff --git a/net/sixlowpan/sixlowpan_send.c b/net/sixlowpan/sixlowpan_send.c index 736eb360826..14a5ec2940e 100644 --- a/net/sixlowpan/sixlowpan_send.c +++ b/net/sixlowpan/sixlowpan_send.c @@ -172,7 +172,7 @@ static uint16_t send_interrupt(FAR struct net_driver_s *dev, } #endif -#ifdef CONFIG_NET_MULTINIC +#ifdef CONFIG_NETDEV_MULTINIC /* REVISIT: Verify that this is the correct IEEE802.15.4 network driver to * route the outgoing frame(s). Chances are that there is only one * IEEE802.15.4 network driver diff --git a/net/sixlowpan/sixlowpan_tcpsend.c b/net/sixlowpan/sixlowpan_tcpsend.c index d936dd32fd3..c1f9df2a1c7 100644 --- a/net/sixlowpan/sixlowpan_tcpsend.c +++ b/net/sixlowpan/sixlowpan_tcpsend.c @@ -810,7 +810,7 @@ ssize_t psock_6lowpan_tcp_send(FAR struct socket *psock, FAR const void *buf, return (ssize_t)-ENETUNREACH; } -#ifdef CONFIG_NETDEV_MULTILINK +#ifdef CONFIG_NET_MULTILINK /* Some network devices support different link layer protocols. * Check if this device has the hooks to support 6LoWPAN. */ diff --git a/net/sixlowpan/sixlowpan_udpsend.c b/net/sixlowpan/sixlowpan_udpsend.c index 69bbdce0321..699189ccfed 100644 --- a/net/sixlowpan/sixlowpan_udpsend.c +++ b/net/sixlowpan/sixlowpan_udpsend.c @@ -216,7 +216,7 @@ ssize_t psock_6lowpan_udp_sendto(FAR struct socket *psock, return (ssize_t)-ENETUNREACH; } -#ifdef CONFIG_NETDEV_MULTILINK +#ifdef CONFIG_NET_MULTILINK /* Some network devices support different link layer protocols. * Check if this device has the hooks to support 6LoWPAN. */