wireless/ieee802154: Removes libradio to coincide with removal of ioctl with radio

Moves all functionality from libradio to libmac
This commit is contained in:
Anthony Merlino
2017-05-05 11:13:30 -04:00
parent 44ace8e1cc
commit 3b824ed5a2
58 changed files with 328 additions and 2854 deletions

View File

@@ -81,7 +81,7 @@ int netlib_getpanid(FAR const char *ifname, FAR uint16_t *panid)
int sockfd = socket(PF_INET6, NETLIB_SOCK_IOCTL, 0);
if (sockfd >= 0)
{
/* Use the helper provided in libradio */
/* Use the helper provided in libmac */
ret = sixlowpan_getpanid(sockfd, ifname, panid);
close(sockfd);