mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
mac80211: Show max number of probe tries in debug message.
Signed-off-by: Ben Greear <greearb@candelatech.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
155180803c
commit
2f88675011
1 changed files with 3 additions and 2 deletions
|
@ -458,8 +458,9 @@ ieee80211_direct_probe(struct ieee80211_work *wk)
|
|||
return WORK_ACT_TIMEOUT;
|
||||
}
|
||||
|
||||
printk(KERN_DEBUG "%s: direct probe to %pM (try %d)\n",
|
||||
sdata->name, wk->filter_ta, wk->probe_auth.tries);
|
||||
printk(KERN_DEBUG "%s: direct probe to %pM (try %d/%i)\n",
|
||||
sdata->name, wk->filter_ta, wk->probe_auth.tries,
|
||||
IEEE80211_AUTH_MAX_TRIES);
|
||||
|
||||
/*
|
||||
* Direct probe is sent to broadcast address as some APs
|
||||
|
|
Loading…
Reference in a new issue