* [PATCH bluetooth-next] mac802154: fix flags BIT definitions order
@ 2015-06-12 7:24 Alexander Aring
2015-06-12 9:44 ` Marcel Holtmann
0 siblings, 1 reply; 2+ messages in thread
From: Alexander Aring @ 2015-06-12 7:24 UTC (permalink / raw)
To: linux-wpan; +Cc: Alexander Aring
This patch fixes commits ("mac802154: cleanup ieee802154 hardware flags")
bcbfd2078d9b11277d9c9ce0c30ba73c750503c9 and ("mac802154: cleanup address
filtering flags") 6b70a43c7e0202cf285c864bc9f20f607c42e432 by starting
the flags definitions at BIT(0) which is same like the previous behaviour.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
---
include/net/mac802154.h | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/include/net/mac802154.h b/include/net/mac802154.h
index de1cdde..f534a46 100644
--- a/include/net/mac802154.h
+++ b/include/net/mac802154.h
@@ -49,10 +49,10 @@
* do frame address filtering as a pan coordinator.
*/
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),
+ IEEE802154_AFILT_SADDR_CHANGED = BIT(0),
+ IEEE802154_AFILT_IEEEADDR_CHANGED = BIT(1),
+ IEEE802154_AFILT_PANID_CHANGED = BIT(2),
+ IEEE802154_AFILT_PANC_CHANGED = BIT(3),
};
/**
@@ -133,14 +133,14 @@ struct ieee802154_hw {
* frames with bad checksum.
*/
enum ieee802154_hw_flags {
- IEEE802154_HW_TX_OMIT_CKSUM = BIT(1),
- IEEE802154_HW_LBT = BIT(2),
- IEEE802154_HW_CSMA_PARAMS = BIT(3),
- IEEE802154_HW_FRAME_RETRIES = BIT(4),
- IEEE802154_HW_AFILT = BIT(5),
- IEEE802154_HW_PROMISCUOUS = BIT(6),
- IEEE802154_HW_RX_OMIT_CKSUM = BIT(7),
- IEEE802154_HW_RX_DROP_BAD_CKSUM = BIT(8),
+ IEEE802154_HW_TX_OMIT_CKSUM = BIT(0),
+ IEEE802154_HW_LBT = BIT(1),
+ IEEE802154_HW_CSMA_PARAMS = BIT(2),
+ IEEE802154_HW_FRAME_RETRIES = BIT(3),
+ IEEE802154_HW_AFILT = BIT(4),
+ IEEE802154_HW_PROMISCUOUS = BIT(5),
+ IEEE802154_HW_RX_OMIT_CKSUM = BIT(6),
+ IEEE802154_HW_RX_DROP_BAD_CKSUM = BIT(7),
};
/* Indicates that receiver omits FCS and xmitter will add FCS on it's own. */
--
2.4.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH bluetooth-next] mac802154: fix flags BIT definitions order
2015-06-12 7:24 [PATCH bluetooth-next] mac802154: fix flags BIT definitions order Alexander Aring
@ 2015-06-12 9:44 ` Marcel Holtmann
0 siblings, 0 replies; 2+ messages in thread
From: Marcel Holtmann @ 2015-06-12 9:44 UTC (permalink / raw)
To: Alexander Aring; +Cc: linux-wpan
H Alex,
> This patch fixes commits ("mac802154: cleanup ieee802154 hardware flags")
> bcbfd2078d9b11277d9c9ce0c30ba73c750503c9 and ("mac802154: cleanup address
> filtering flags") 6b70a43c7e0202cf285c864bc9f20f607c42e432 by starting
> the flags definitions at BIT(0) which is same like the previous behaviour.
>
> Signed-off-by: Alexander Aring <alex.aring@gmail.com>
> ---
> include/net/mac802154.h | 24 ++++++++++++------------
> 1 file changed, 12 insertions(+), 12 deletions(-)
patch has been applied to bluetooth-next tree.
Regards
Marcel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-12 9:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-12 7:24 [PATCH bluetooth-next] mac802154: fix flags BIT definitions order Alexander Aring
2015-06-12 9:44 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox