Remove some dangling white space at the end of lines

This commit is contained in:
Gregory Nutt 2017-04-11 13:42:25 -06:00
parent 988bb0cf9a
commit 46945638e9
2 changed files with 3 additions and 3 deletions

View File

@ -98,11 +98,11 @@ int ieee802154_addrparse(FAR struct ieee802154_packet_s *packet,
return -EINVAL;
}
if ((src->ia_mode == IEEE802154_ADDRMODE_SHORT) ||
if ((src->ia_mode == IEEE802154_ADDRMODE_SHORT) ||
(src->ia_mode == IEEE802154_ADDRMODE_EXTENDED))
{
/* If PANID compression, src PAN ID is same as dest */
if(frame_ctrl & IEEE802154_FRAMECTRL_PANIDCOMP)
{
src->ia_panid = dest->ia_panid;

View File

@ -80,7 +80,7 @@ int ieee802154_addrstore(FAR struct ieee802154_packet_s *packet,
index += 2; /* Skip dest pan id */
/* Set the dest address mode field */
frame_ctrl |= dest->ia_mode << IEEE802154_FRAMECTRL_SHIFT_DADDR;
if(dest->ia_mode == IEEE802154_ADDRMODE_SHORT)