aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/net/mac80211.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 0d67b331ee72..3bd970f29f29 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -350,6 +350,8 @@ struct ieee80211_tx_control {
350 * the frame. 350 * the frame.
351 * @RX_FLAG_FAILED_PLCP_CRC: Set this flag if the PCLP check failed on 351 * @RX_FLAG_FAILED_PLCP_CRC: Set this flag if the PCLP check failed on
352 * the frame. 352 * the frame.
353 * @RX_FLAG_TSFT: The timestamp passed in the RX status (@mactime field)
354 * is valid.
353 */ 355 */
354enum mac80211_rx_flags { 356enum mac80211_rx_flags {
355 RX_FLAG_MMIC_ERROR = 1<<0, 357 RX_FLAG_MMIC_ERROR = 1<<0,
@@ -359,6 +361,7 @@ enum mac80211_rx_flags {
359 RX_FLAG_IV_STRIPPED = 1<<4, 361 RX_FLAG_IV_STRIPPED = 1<<4,
360 RX_FLAG_FAILED_FCS_CRC = 1<<5, 362 RX_FLAG_FAILED_FCS_CRC = 1<<5,
361 RX_FLAG_FAILED_PLCP_CRC = 1<<6, 363 RX_FLAG_FAILED_PLCP_CRC = 1<<6,
364 RX_FLAG_TSFT = 1<<7,
362}; 365};
363 366
364/** 367/**