aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/mlme.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-06-09 10:18:32 -0400
committerJohn W. Linville <linville@tuxdriver.com>2009-06-10 13:28:39 -0400
commit0bffe40f21e2ddc5215b1faec4e8dbbc215e7d4d (patch)
tree48d1de44f8f8aa155713ff38f038ec35326d27bf /net/mac80211/mlme.c
parent5eae6592e9bdc989151171828ee97e0ad9e1b1ac (diff)
mac80211: don't use master netdev name
Always use the wiphy name instead. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/mlme.c')
-rw-r--r--net/mac80211/mlme.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index 509469cb9265..e8a3d3cb80df 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -793,13 +793,13 @@ static void ieee80211_sta_wmm_params(struct ieee80211_local *local,
793#ifdef CONFIG_MAC80211_VERBOSE_DEBUG 793#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
794 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d " 794 printk(KERN_DEBUG "%s: WMM queue=%d aci=%d acm=%d aifs=%d "
795 "cWmin=%d cWmax=%d txop=%d\n", 795 "cWmin=%d cWmax=%d txop=%d\n",
796 local->mdev->name, queue, aci, acm, params.aifs, params.cw_min, 796 wiphy_name(local->hw.wiphy), queue, aci, acm,
797 params.cw_max, params.txop); 797 params.aifs, params.cw_min, params.cw_max, params.txop);
798#endif 798#endif
799 if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx) 799 if (drv_conf_tx(local, queue, &params) && local->ops->conf_tx)
800 printk(KERN_DEBUG "%s: failed to set TX queue " 800 printk(KERN_DEBUG "%s: failed to set TX queue "
801 "parameters for queue %d\n", local->mdev->name, 801 "parameters for queue %d\n",
802 queue); 802 wiphy_name(local->hw.wiphy), queue);
803 } 803 }
804} 804}
805 805