Fix a couple of errors in names used in 6LoWPAN conditional compilation.

This commit is contained in:
Gregory Nutt 2017-08-08 12:15:58 -06:00
parent f3f522514e
commit d49d6a6aa9
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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.
*/

View File

@ -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.
*/