From de7000ee3e0a1be87eebd70ee239b550aca6808b Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 30 Mar 2018 17:43:58 -0600 Subject: [PATCH] wireless/ieee802154: Fix a few typos --- wireless/ieee802154/mac802154_loopback.c | 8 ++++---- wireless/ieee802154/mac802154_netdev.c | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/wireless/ieee802154/mac802154_loopback.c b/wireless/ieee802154/mac802154_loopback.c index dc5d2e3d3b..9222bb41ea 100644 --- a/wireless/ieee802154/mac802154_loopback.c +++ b/wireless/ieee802154/mac802154_loopback.c @@ -889,12 +889,12 @@ static int lo_ioctl(FAR struct net_driver_s *dev, int cmd, * Calculate the MAC header length given the frame meta-data. * * Input Parameters: - * netdev - The networkd device that will mediate the MAC interface + * netdev - The network device that will mediate the MAC interface * meta - Obfuscated metadata structure needed to create the radio * MAC header * * Returned Value: - * A non-negative MAC headeer length is returned on success; a negated + * A non-negative MAC header length is returned on success; a negated * errno value is returned on any failure. * ****************************************************************************/ @@ -912,7 +912,7 @@ static int lo_get_mhrlen(FAR struct radio_driver_s *netdev, * Requests the transfer of a list of frames to the MAC. * * Input Parameters: - * netdev - The networkd device that will mediate the MAC interface + * netdev - The network device that will mediate the MAC interface * meta - Obfuscated metadata structure needed to create the radio * MAC header * framelist - Head of a list of frames to be transferred. @@ -985,7 +985,7 @@ static int lo_req_data(FAR struct radio_driver_s *netdev, * * Input Parameters: * netdev - The network device to be queried - * properties - Location where radio properities will be returned. + * properties - Location where radio properties will be returned. * * Returned Value: * Zero (OK) returned on success; a negated errno value is returned on diff --git a/wireless/ieee802154/mac802154_netdev.c b/wireless/ieee802154/mac802154_netdev.c index 5f4ce98598..cde62984d3 100644 --- a/wireless/ieee802154/mac802154_netdev.c +++ b/wireless/ieee802154/mac802154_netdev.c @@ -1170,12 +1170,12 @@ static int macnet_ioctl(FAR struct net_driver_s *dev, int cmd, * Calculate the MAC header length given the frame meta-data. * * Input Parameters: - * netdev - The networkd device that will mediate the MAC interface + * netdev - The network device that will mediate the MAC interface * meta - Obfuscated metadata structure needed to create the radio * MAC header * * Returned Value: - * A non-negative MAC headeer length is returned on success; a negated + * A non-negative MAC header length is returned on success; a negated * errno value is returned on any failure. * ****************************************************************************/ @@ -1199,7 +1199,7 @@ static int macnet_get_mhrlen(FAR struct radio_driver_s *netdev, * Requests the transfer of a list of frames to the MAC. * * Input Parameters: - * netdev - The networkd device that will mediate the MAC interface + * netdev - The network device that will mediate the MAC interface * meta - Obfuscated metadata structure needed to create the radio * MAC header * framelist - Head of a list of frames to be transferred. @@ -1282,7 +1282,7 @@ static int macnet_req_data(FAR struct radio_driver_s *netdev, * * Input Parameters: * netdev - The network device to be queried - * properties - Location where radio properities will be returned. + * properties - Location where radio properties will be returned. * * Returned Value: * Zero (OK) returned on success; a negated errno value is returned on