diff options
author | Alexander Aring <alex.aring@gmail.com> | 2014-10-29 16:34:29 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-10-29 18:07:44 -0400 |
commit | 90a6161df57e7943cdd575ce95c1c62b468407e3 (patch) | |
tree | 8aa0541f5fafa74cf75375fd2b536aaa2ecbc4ed | |
parent | 55a2d0651762eb6f70d48ff94d21bc5718d5e47d (diff) |
mac802154: remove tab after define
This patch removes tabs after define in hardware flags declarations.
Signed-off-by: Alexander Aring <alex.aring@gmail.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
-rw-r--r-- | include/net/mac802154.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/net/mac802154.h b/include/net/mac802154.h index 85a4efca418b..fe1495796ce7 100644 --- a/include/net/mac802154.h +++ b/include/net/mac802154.h | |||
@@ -74,22 +74,22 @@ struct ieee802154_hw { | |||
74 | */ | 74 | */ |
75 | 75 | ||
76 | /* Indicates that receiver omits FCS and xmitter will add FCS on it's own. */ | 76 | /* Indicates that receiver omits FCS and xmitter will add FCS on it's own. */ |
77 | #define IEEE802154_HW_OMIT_CKSUM 0x00000001 | 77 | #define IEEE802154_HW_OMIT_CKSUM 0x00000001 |
78 | /* Indicates that receiver will autorespond with ACK frames. */ | 78 | /* Indicates that receiver will autorespond with ACK frames. */ |
79 | #define IEEE802154_HW_AACK 0x00000002 | 79 | #define IEEE802154_HW_AACK 0x00000002 |
80 | /* Indicates that transceiver will support transmit power setting. */ | 80 | /* Indicates that transceiver will support transmit power setting. */ |
81 | #define IEEE802154_HW_TXPOWER 0x00000004 | 81 | #define IEEE802154_HW_TXPOWER 0x00000004 |
82 | /* Indicates that transceiver will support listen before transmit. */ | 82 | /* Indicates that transceiver will support listen before transmit. */ |
83 | #define IEEE802154_HW_LBT 0x00000008 | 83 | #define IEEE802154_HW_LBT 0x00000008 |
84 | /* Indicates that transceiver will support cca mode setting. */ | 84 | /* Indicates that transceiver will support cca mode setting. */ |
85 | #define IEEE802154_HW_CCA_MODE 0x00000010 | 85 | #define IEEE802154_HW_CCA_MODE 0x00000010 |
86 | /* Indicates that transceiver will support cca ed level setting. */ | 86 | /* Indicates that transceiver will support cca ed level setting. */ |
87 | #define IEEE802154_HW_CCA_ED_LEVEL 0x00000020 | 87 | #define IEEE802154_HW_CCA_ED_LEVEL 0x00000020 |
88 | /* Indicates that transceiver will support csma (max_be, min_be, csma retries) | 88 | /* Indicates that transceiver will support csma (max_be, min_be, csma retries) |
89 | * settings. */ | 89 | * settings. */ |
90 | #define IEEE802154_HW_CSMA_PARAMS 0x00000040 | 90 | #define IEEE802154_HW_CSMA_PARAMS 0x00000040 |
91 | /* Indicates that transceiver will support ARET frame retries setting. */ | 91 | /* Indicates that transceiver will support ARET frame retries setting. */ |
92 | #define IEEE802154_HW_FRAME_RETRIES 0x00000080 | 92 | #define IEEE802154_HW_FRAME_RETRIES 0x00000080 |
93 | 93 | ||
94 | /* This groups the most common CSMA support fields into one. */ | 94 | /* This groups the most common CSMA support fields into one. */ |
95 | #define IEEE802154_HW_CSMA (IEEE802154_HW_CCA_MODE | \ | 95 | #define IEEE802154_HW_CSMA (IEEE802154_HW_CCA_MODE | \ |