Skip to content

Commit

Permalink
mac802154: cleanup address filtering flags
Browse files Browse the repository at this point in the history
This patch changes the address filtering flags to enums and setting the
flag values with the BIT macro. Additional this patch changes the
commenting style for matching usual kernel style.

Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Reviewed-by: Varka Bhadram <varkabhadram@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
  • Loading branch information
Alexander Aring authored and Marcel Holtmann committed Jun 7, 2015
1 parent ed65963 commit 6b70a43
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions include/net/mac802154.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,29 @@
*/
#define MAC802154_FRAME_HARD_HEADER_LEN (2 + 1 + 20 + 14)

/* The following flags are used to indicate changed address settings from
/**
* enum ieee802154_hw_addr_filt_flags - hardware address filtering flags
*
* The following flags are used to indicate changed address settings from
* the stack to the hardware.
*
* @IEEE802154_AFILT_SADDR_CHANGED: Indicates that the short address will be
* change.
*
* @IEEE802154_AFILT_IEEEADDR_CHANGED: Indicates that the extended address
* will be change.
*
* @IEEE802154_AFILT_PANID_CHANGED: Indicates that the pan id will be change.
*
* @IEEE802154_AFILT_PANC_CHANGED: Indicates that the address filter will
* do frame address filtering as a pan coordinator.
*/

/* indicates that the Short Address changed */
#define IEEE802154_AFILT_SADDR_CHANGED 0x00000001
/* indicates that the IEEE Address changed */
#define IEEE802154_AFILT_IEEEADDR_CHANGED 0x00000002
/* indicates that the PAN ID changed */
#define IEEE802154_AFILT_PANID_CHANGED 0x00000004
/* indicates that PAN Coordinator status changed */
#define IEEE802154_AFILT_PANC_CHANGED 0x00000008
enum ieee802154_hw_addr_filt_flags {
IEEE802154_AFILT_SADDR_CHANGED = BIT(1),
IEEE802154_AFILT_IEEEADDR_CHANGED = BIT(2),
IEEE802154_AFILT_PANID_CHANGED = BIT(3),
IEEE802154_AFILT_PANC_CHANGED = BIT(4),
};

struct ieee802154_hw_addr_filt {
__le16 pan_id; /* Each independent PAN selects a unique
Expand Down

0 comments on commit 6b70a43

Please sign in to comment.