aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/mac80211.h
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2008-02-20 17:59:33 -0500
committerJohn W. Linville <linville@tuxdriver.com>2008-02-29 15:41:32 -0500
commitd46e144b65bf053b25d134ec9f52a38e63e04bb4 (patch)
tree95a3e4ea7660511375f71c54335045a5d1441b1a /include/net/mac80211.h
parentd97cf01576e1867d26b5c8de360380f815a1b7df (diff)
mac80211: rework TX filtered frame code
This reworks the code for TX filtered frames, splitting it out to a new function to handle those cases, making the clear instruction a flag and renaming a few things to be easier to understand and less Atheros hardware specific. Finally, it also makes the comments explain more. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r--include/net/mac80211.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 784ab769b00b..cd4b1c1a0d48 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -228,7 +228,8 @@ struct ieee80211_tx_control {
228#define IEEE80211_TXCTL_NO_ACK (1<<4) /* tell the low level not to 228#define IEEE80211_TXCTL_NO_ACK (1<<4) /* tell the low level not to
229 * wait for an ack */ 229 * wait for an ack */
230#define IEEE80211_TXCTL_RATE_CTRL_PROBE (1<<5) 230#define IEEE80211_TXCTL_RATE_CTRL_PROBE (1<<5)
231#define IEEE80211_TXCTL_CLEAR_DST_MASK (1<<6) 231#define IEEE80211_TXCTL_CLEAR_PS_FILT (1<<6) /* clear powersave filter
232 * for destination station */
232#define IEEE80211_TXCTL_REQUEUE (1<<7) 233#define IEEE80211_TXCTL_REQUEUE (1<<7)
233#define IEEE80211_TXCTL_FIRST_FRAGMENT (1<<8) /* this is a first fragment of 234#define IEEE80211_TXCTL_FIRST_FRAGMENT (1<<8) /* this is a first fragment of
234 * the frame */ 235 * the frame */