Another fix from recent PR: mac802154_primitive_free() does not exist. Perhaps ieee802154_primitive_free() is what was intended?

This commit is contained in:
Gregory Nutt 2017-11-03 08:42:21 -06:00
parent 8d485cd345
commit f562bf0fbe
1 changed files with 5 additions and 4 deletions

View File

@ -1084,11 +1084,12 @@ static int macnet_ioctl(FAR struct net_driver_s *dev, int cmd,
if (primitive != NULL)
{
memcpy(&netmac->u, primitive, sizeof(struct ieee802154_primitive_s));
memcpy(&netmac->u, primitive,
sizeof(struct ieee802154_primitive_s));
/* Free the notification */
/* Free the event */
mac802154_primitive_free(priv->md_mac, primitive);
ieee802154_primitive_free(primitive);
ret = OK;
break;
}