diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-05-02 00:37:18 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-05-20 14:46:22 -0400 |
commit | 689da1b3b8b37ff41e79f3fb973c06cdfeef12e5 (patch) | |
tree | 57accde02817fa1fdb61ddafd16263294e065ed8 /include/net | |
parent | 038659e7c6b385065cb223872771ac437ef70b62 (diff) |
wireless: rename IEEE80211_CHAN_NO_FAT_* to HT40-/+
This is more consistent with our nl80211 naming convention
for HT40-/+.
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/cfg80211.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index 282d58d52fce..7391ad10c8c0 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -56,9 +56,9 @@ enum ieee80211_band { | |||
56 | * on this channel. | 56 | * on this channel. |
57 | * @IEEE80211_CHAN_NO_IBSS: IBSS is not allowed on this channel. | 57 | * @IEEE80211_CHAN_NO_IBSS: IBSS is not allowed on this channel. |
58 | * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel. | 58 | * @IEEE80211_CHAN_RADAR: Radar detection is required on this channel. |
59 | * @IEEE80211_CHAN_NO_FAT_ABOVE: extension channel above this channel | 59 | * @IEEE80211_CHAN_NO_HT40PLUS: extension channel above this channel |
60 | * is not permitted. | 60 | * is not permitted. |
61 | * @IEEE80211_CHAN_NO_FAT_BELOW: extension channel below this channel | 61 | * @IEEE80211_CHAN_NO_HT40MINUS: extension channel below this channel |
62 | * is not permitted. | 62 | * is not permitted. |
63 | */ | 63 | */ |
64 | enum ieee80211_channel_flags { | 64 | enum ieee80211_channel_flags { |
@@ -66,12 +66,12 @@ enum ieee80211_channel_flags { | |||
66 | IEEE80211_CHAN_PASSIVE_SCAN = 1<<1, | 66 | IEEE80211_CHAN_PASSIVE_SCAN = 1<<1, |
67 | IEEE80211_CHAN_NO_IBSS = 1<<2, | 67 | IEEE80211_CHAN_NO_IBSS = 1<<2, |
68 | IEEE80211_CHAN_RADAR = 1<<3, | 68 | IEEE80211_CHAN_RADAR = 1<<3, |
69 | IEEE80211_CHAN_NO_FAT_ABOVE = 1<<4, | 69 | IEEE80211_CHAN_NO_HT40PLUS = 1<<4, |
70 | IEEE80211_CHAN_NO_FAT_BELOW = 1<<5, | 70 | IEEE80211_CHAN_NO_HT40MINUS = 1<<5, |
71 | }; | 71 | }; |
72 | 72 | ||
73 | #define IEEE80211_CHAN_NO_HT40 \ | 73 | #define IEEE80211_CHAN_NO_HT40 \ |
74 | (IEEE80211_CHAN_NO_FAT_ABOVE | IEEE80211_CHAN_NO_FAT_BELOW) | 74 | (IEEE80211_CHAN_NO_HT40PLUS | IEEE80211_CHAN_NO_HT40MINUS) |
75 | 75 | ||
76 | /** | 76 | /** |
77 | * struct ieee80211_channel - channel definition | 77 | * struct ieee80211_channel - channel definition |