diff options
author | Johannes Berg <johannes@sipsolutions.net> | 2008-09-10 18:01:58 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-09-15 16:48:23 -0400 |
commit | 05c914fe330fa8e1cc67870dc0d3809dfd96c107 (patch) | |
tree | df53bcab47335f3361c09478d6b1447b7d298536 /net/mac80211/ht.c | |
parent | 96dd22ac06b0dbfb069fdf530c72046a941e9694 (diff) |
mac80211: use nl80211 interface types
There's really no reason for mac80211 to be using its
own interface type defines. Use the nl80211 types and
simplify the configuration code a bit: there's no need
to translate them any more now.
Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/ht.c')
-rw-r--r-- | net/mac80211/ht.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c index 4dc35c9dabc7..bc3c71ad7ae3 100644 --- a/net/mac80211/ht.c +++ b/net/mac80211/ht.c | |||
@@ -89,7 +89,7 @@ static void ieee80211_send_addba_request(struct ieee80211_sub_if_data *sdata, | |||
89 | memset(mgmt, 0, 24); | 89 | memset(mgmt, 0, 24); |
90 | memcpy(mgmt->da, da, ETH_ALEN); | 90 | memcpy(mgmt->da, da, ETH_ALEN); |
91 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); | 91 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
92 | if (sdata->vif.type == IEEE80211_IF_TYPE_AP) | 92 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
93 | memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN); | 93 | memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN); |
94 | else | 94 | else |
95 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); | 95 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
@@ -139,7 +139,7 @@ static void ieee80211_send_addba_resp(struct ieee80211_sub_if_data *sdata, u8 *d | |||
139 | memset(mgmt, 0, 24); | 139 | memset(mgmt, 0, 24); |
140 | memcpy(mgmt->da, da, ETH_ALEN); | 140 | memcpy(mgmt->da, da, ETH_ALEN); |
141 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); | 141 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
142 | if (sdata->vif.type == IEEE80211_IF_TYPE_AP) | 142 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
143 | memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN); | 143 | memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN); |
144 | else | 144 | else |
145 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); | 145 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |
@@ -185,7 +185,7 @@ static void ieee80211_send_delba(struct ieee80211_sub_if_data *sdata, | |||
185 | memset(mgmt, 0, 24); | 185 | memset(mgmt, 0, 24); |
186 | memcpy(mgmt->da, da, ETH_ALEN); | 186 | memcpy(mgmt->da, da, ETH_ALEN); |
187 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); | 187 | memcpy(mgmt->sa, sdata->dev->dev_addr, ETH_ALEN); |
188 | if (sdata->vif.type == IEEE80211_IF_TYPE_AP) | 188 | if (sdata->vif.type == NL80211_IFTYPE_AP) |
189 | memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN); | 189 | memcpy(mgmt->bssid, sdata->dev->dev_addr, ETH_ALEN); |
190 | else | 190 | else |
191 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); | 191 | memcpy(mgmt->bssid, ifsta->bssid, ETH_ALEN); |