diff mbox

[RFC,15/27] mac80211: change ieee80211_if_wds and _vlan to use mac80211 prefix

Message ID 20110529200554.16479.96246.stgit@localhost6.localdomain6 (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Kalle Valo May 29, 2011, 8:05 p.m. UTC
Signed-off-by: Kalle Valo <kvalo@adurom.com>
---
 net/mac80211/mac80211_i.h |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


--
To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/net/mac80211/mac80211_i.h b/net/mac80211/mac80211_i.h
index f41a342..dc30f13 100644
--- a/net/mac80211/mac80211_i.h
+++ b/net/mac80211/mac80211_i.h
@@ -228,12 +228,12 @@  struct mac80211_if_ap {
 	bool dtim_bc_mc;
 };
 
-struct ieee80211_if_wds {
+struct mac80211_if_wds {
 	struct sta_info *sta;
 	u8 remote_addr[ETH_ALEN];
 };
 
-struct ieee80211_if_vlan {
+struct mac80211_if_vlan {
 	struct list_head list;
 
 	/* used for all tx if the VLAN is configured to 4-addr mode */
@@ -594,8 +594,8 @@  struct ieee80211_sub_if_data {
 
 	union {
 		struct mac80211_if_ap ap;
-		struct ieee80211_if_wds wds;
-		struct ieee80211_if_vlan vlan;
+		struct mac80211_if_wds wds;
+		struct mac80211_if_vlan vlan;
 		struct ieee80211_if_managed mgd;
 		struct ieee80211_if_ibss ibss;
 		struct ieee80211_if_mesh mesh;