diff options
author | Bernhard Schmidt <bschmidt@FreeBSD.org> | 2011-02-21 20:02:02 +0000 |
---|---|---|
committer | Bernhard Schmidt <bschmidt@FreeBSD.org> | 2011-02-21 20:02:02 +0000 |
commit | 02e69b54eb53564d2d1e7730153c98b85aa4423c (patch) | |
tree | cceace171a6b645f4341fb561c6de8169d5d3f11 | |
parent | 96283082bb8908832b55db28428c24d83414d9da (diff) | |
download | src-02e69b54eb53564d2d1e7730153c98b85aa4423c.tar.gz src-02e69b54eb53564d2d1e7730153c98b85aa4423c.zip |
It is IEEE80211_SUPPORT_XXX not IEEE80211_XXX_SUPPORT.
Notes
Notes:
svn path=/head/; revision=218928
-rw-r--r-- | sys/net80211/ieee80211_output.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/net80211/ieee80211_output.c b/sys/net80211/ieee80211_output.c index 9b532c32e212..f18d0c4080be 100644 --- a/sys/net80211/ieee80211_output.c +++ b/sys/net80211/ieee80211_output.c @@ -2922,13 +2922,13 @@ ieee80211_beacon_update(struct ieee80211_node *ni, bo->bo_tim_trailer += adjust; bo->bo_erp += adjust; bo->bo_htinfo += adjust; -#ifdef IEEE80211_SUPERG_SUPPORT +#ifdef IEEE80211_SUPPORT_SUPERG bo->bo_ath += adjust; #endif -#ifdef IEEE80211_TDMA_SUPPORT +#ifdef IEEE80211_SUPPORT_TDMA bo->bo_tdma += adjust; #endif -#ifdef IEEE80211_MESH_SUPPORT +#ifdef IEEE80211_SUPPORT_MESH bo->bo_meshconf += adjust; #endif bo->bo_appie += adjust; @@ -2976,13 +2976,13 @@ ieee80211_beacon_update(struct ieee80211_node *ni, bo->bo_erp += sizeof(*csa); bo->bo_htinfo += sizeof(*csa); bo->bo_wme += sizeof(*csa); -#ifdef IEEE80211_SUPERG_SUPPORT +#ifdef IEEE80211_SUPPORT_SUPERG bo->bo_ath += sizeof(*csa); #endif -#ifdef IEEE80211_TDMA_SUPPORT +#ifdef IEEE80211_SUPPORT_TDMA bo->bo_tdma += sizeof(*csa); #endif -#ifdef IEEE80211_MESH_SUPPORT +#ifdef IEEE80211_SUPPORT_MESH bo->bo_meshconf += sizeof(*csa); #endif bo->bo_appie += sizeof(*csa); |