net80211: fix arguments to IEEE80211_NOTE in ieee80211_fix_rate
Fix the arguments to the debug statement. (slightly adjusted from the original submission by bz) PR: 286448 MFC after: 3 days
This commit is contained in:
committed by
Bjoern A. Zeeb
parent
fa24602ca6
commit
75556c7e99
@@ -747,8 +747,8 @@ ieee80211_fix_rate(struct ieee80211_node *ni,
|
||||
((flags & (IEEE80211_F_DOFRATE|IEEE80211_F_DOFMCS)) &&
|
||||
fixedrate != ucastrate)) {
|
||||
IEEE80211_NOTE(vap, IEEE80211_MSG_XRATE | IEEE80211_MSG_11N, ni,
|
||||
"%s: flags 0x%x okrate %d error %d fixedrate 0x%x "
|
||||
"ucastrate %x\n", __func__, fixedrate, ucastrate, flags);
|
||||
"%s: flags 0x%x okrate %d error %d fixedrate 0x%x ucastrate 0x%x\n",
|
||||
__func__, flags, okrate, error, fixedrate, ucastrate);
|
||||
return badrate | IEEE80211_RATE_BASIC;
|
||||
} else
|
||||
return IEEE80211_RV(okrate);
|
||||
|
||||
Reference in New Issue
Block a user