aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 45fbb9e33746..eecbb1fcd2ab 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -1972,9 +1972,9 @@ void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
1972#ifdef CONFIG_MAC80211_VERBOSE_DEBUG 1972#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
1973 wiphy_debug(local->hw.wiphy, 1973 wiphy_debug(local->hw.wiphy,
1974 "%s: No ack for nullfunc frame to" 1974 "%s: No ack for nullfunc frame to"
1975 " AP %pM, try %d\n", 1975 " AP %pM, try %d/%i\n",
1976 sdata->name, bssid, 1976 sdata->name, bssid,
1977 ifmgd->probe_send_count); 1977 ifmgd->probe_send_count, max_tries);
1978#endif 1978#endif
1979 ieee80211_mgd_probe_ap_send(sdata); 1979 ieee80211_mgd_probe_ap_send(sdata);
1980 } else { 1980 } else {
@@ -2001,10 +2001,10 @@ void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
2001#ifdef CONFIG_MAC80211_VERBOSE_DEBUG 2001#ifdef CONFIG_MAC80211_VERBOSE_DEBUG
2002 wiphy_debug(local->hw.wiphy, 2002 wiphy_debug(local->hw.wiphy,
2003 "%s: No probe response from AP %pM" 2003 "%s: No probe response from AP %pM"
2004 " after %dms, try %d\n", 2004 " after %dms, try %d/%i\n",
2005 sdata->name, 2005 sdata->name,
2006 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ, 2006 bssid, (1000 * IEEE80211_PROBE_WAIT)/HZ,
2007 ifmgd->probe_send_count); 2007 ifmgd->probe_send_count, max_tries);
2008#endif 2008#endif
2009 ieee80211_mgd_probe_ap_send(sdata); 2009 ieee80211_mgd_probe_ap_send(sdata);
2010 } else { 2010 } else {