aboutsummaryrefslogtreecommitdiff
path: root/sys/net80211/ieee80211_ht.h
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2020-06-06 06:17:51 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2020-06-06 06:17:51 +0000
commit4c3682159aa218798b798377dd7d545946119423 (patch)
tree461b45871221654ee5e0420f337f73498ff302eb /sys/net80211/ieee80211_ht.h
parent47bf877bde1b9166c7b9c95cf08cdbbe4f523d03 (diff)
downloadsrc-4c3682159aa218798b798377dd7d545946119423.tar.gz
src-4c3682159aa218798b798377dd7d545946119423.zip
[net80211] Fix this typo!
I've just started using this macro in upcoming amsdu/ampdu/ff rework and yes, too many parens. Oops!
Notes
Notes: svn path=/head/; revision=361864
Diffstat (limited to 'sys/net80211/ieee80211_ht.h')
-rw-r--r--sys/net80211/ieee80211_ht.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net80211/ieee80211_ht.h b/sys/net80211/ieee80211_ht.h
index 73cd22c1b9f1..05fb433ad4a1 100644
--- a/sys/net80211/ieee80211_ht.h
+++ b/sys/net80211/ieee80211_ht.h
@@ -74,7 +74,7 @@ struct ieee80211_tx_ampdu {
* A-MSDU in A-MPDU
*/
#define IEEE80211_AMPDU_RUNNING_AMSDU(tap) \
- ((((tap)->txa_flags & (IEEE80211_AGGR_RUNNING | IEEE80211_AGGR_AMSDU)) \
+ (((tap)->txa_flags & (IEEE80211_AGGR_RUNNING | IEEE80211_AGGR_AMSDU)) \
== (IEEE80211_AGGR_RUNNING | IEEE80211_AGGR_AMSDU))
/* return non-zero if AMPDU tx for the TID was NACKed */