aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/mac80211.h
diff options
context:
space:
mode:
authorBruno Randolf <br1@einfach.org>2008-07-30 11:19:55 -0400
committerJohn W. Linville <linville@tuxdriver.com>2008-08-22 16:29:50 -0400
commitb4f28bbb9bf0b2c829ecf97ce2173f204fde4f10 (patch)
tree1ae74cd00a46086f7e5f31d140bf75b8793507ef /include/net/mac80211.h
parent63266a653589e1a237527479f10212ea77ce7844 (diff)
mac80211: add rx status flag for short preamble
and use it for the radiotap header Signed-off-by: Bruno Randolf <br1@einfach.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r--include/net/mac80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 25cc192cbe4c..dcc05a197dc1 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -363,6 +363,7 @@ static inline struct ieee80211_tx_info *IEEE80211_SKB_CB(struct sk_buff *skb)
363 * @RX_FLAG_TSFT: The timestamp passed in the RX status (@mactime field) 363 * @RX_FLAG_TSFT: The timestamp passed in the RX status (@mactime field)
364 * is valid. This is useful in monitor mode and necessary for beacon frames 364 * is valid. This is useful in monitor mode and necessary for beacon frames
365 * to enable IBSS merging. 365 * to enable IBSS merging.
366 * @RX_FLAG_SHORTPRE: Short preamble was used for this frame
366 */ 367 */
367enum mac80211_rx_flags { 368enum mac80211_rx_flags {
368 RX_FLAG_MMIC_ERROR = 1<<0, 369 RX_FLAG_MMIC_ERROR = 1<<0,
@@ -373,6 +374,7 @@ enum mac80211_rx_flags {
373 RX_FLAG_FAILED_FCS_CRC = 1<<5, 374 RX_FLAG_FAILED_FCS_CRC = 1<<5,
374 RX_FLAG_FAILED_PLCP_CRC = 1<<6, 375 RX_FLAG_FAILED_PLCP_CRC = 1<<6,
375 RX_FLAG_TSFT = 1<<7, 376 RX_FLAG_TSFT = 1<<7,
377 RX_FLAG_SHORTPRE = 1<<8
376}; 378};
377 379
378/** 380/**