aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/cfg.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2010-08-20 19:25:38 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-08-25 14:33:17 -0400
commit0fb9a9ec27718fbf7fa3153bc94becefb716ceeb (patch)
tree8f5d6a5fa9f2c6b8b08273dc198d6187d0a70361 /net/mac80211/cfg.c
parentb62177a0aa0521fd07cd7501534c0c3b256ebce6 (diff)
net/mac80211: Use wiphy_<level>
Standardize logging messages from printk(KERN_<level> "%s: " fmt , wiphy_name(foo), args); to wiphy_<level>(foo, fmt, args); Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/cfg.c')
-rw-r--r--net/mac80211/cfg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 94787d21282c..7693ebc77596 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -1123,9 +1123,9 @@ static int ieee80211_set_txq_params(struct wiphy *wiphy,
1123 p.uapsd = false; 1123 p.uapsd = false;
1124 1124
1125 if (drv_conf_tx(local, params->queue, &p)) { 1125 if (drv_conf_tx(local, params->queue, &p)) {
1126 printk(KERN_DEBUG "%s: failed to set TX queue " 1126 wiphy_debug(local->hw.wiphy,
1127 "parameters for queue %d\n", 1127 "failed to set TX queue parameters for queue %d\n",
1128 wiphy_name(local->hw.wiphy), params->queue); 1128 params->queue);
1129 return -EINVAL; 1129 return -EINVAL;
1130 } 1130 }
1131 1131