aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/debugfs_netdev.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2007-12-18 19:31:27 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:09:37 -0500
commit51fb61e76d952e6bc2fbdd9f0d38425fbab1cf31 (patch)
tree09618b395aae1b91fbc8dec7ea9397a9654a9f0f /net/mac80211/debugfs_netdev.c
parent32bfd35d4b63bd63de4bb0d791ef049c3c868726 (diff)
mac80211: move interface type to vif structure
Drivers that support mixed AP/STA operation may well need to know the type of a virtual interface when iterating over them. The easiest way to support that is to move the interface type variable into the vif structure. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/debugfs_netdev.c')
-rw-r--r--net/mac80211/debugfs_netdev.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mac80211/debugfs_netdev.c b/net/mac80211/debugfs_netdev.c
index bf715d28643b..d2d3c076c853 100644
--- a/net/mac80211/debugfs_netdev.c
+++ b/net/mac80211/debugfs_netdev.c
@@ -226,7 +226,7 @@ static void add_files(struct ieee80211_sub_if_data *sdata)
226 if (!sdata->debugfsdir) 226 if (!sdata->debugfsdir)
227 return; 227 return;
228 228
229 switch (sdata->type) { 229 switch (sdata->vif.type) {
230 case IEEE80211_IF_TYPE_STA: 230 case IEEE80211_IF_TYPE_STA:
231 case IEEE80211_IF_TYPE_IBSS: 231 case IEEE80211_IF_TYPE_IBSS:
232 add_sta_files(sdata); 232 add_sta_files(sdata);
@@ -353,7 +353,7 @@ void ieee80211_debugfs_add_netdev(struct ieee80211_sub_if_data *sdata)
353 353
354void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata) 354void ieee80211_debugfs_remove_netdev(struct ieee80211_sub_if_data *sdata)
355{ 355{
356 del_files(sdata, sdata->type); 356 del_files(sdata, sdata->vif.type);
357 debugfs_remove(sdata->debugfsdir); 357 debugfs_remove(sdata->debugfsdir);
358 sdata->debugfsdir = NULL; 358 sdata->debugfsdir = NULL;
359} 359}