projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
22d8d9f
)
mac80211: fix a compiler warning
author
Felix Fietkau
<
[email protected]
>
Tue, 7 Dec 2010 03:40:18 +0000
(
04:40
+0100)
committer
John W. Linville
<
[email protected]
>
Tue, 7 Dec 2010 22:08:06 +0000
(17:08 -0500)
net/mac80211/mlme.c: In function 'ieee80211_sta_work':
net/mac80211/mlme.c:1981: warning: too many arguments for format
Introduced by commit
04ac3c0ee2c773c321ec472d892635a20556f34d
("mac80211: speed up AP probing using nullfunc frames").
Reported-by: Stephen Rothwell <
[email protected]
>
Signed-off-by: Felix Fietkau <
[email protected]
>
Signed-off-by: John W. Linville <
[email protected]
>
net/mac80211/mlme.c
patch
|
blob
|
history
diff --git
a/net/mac80211/mlme.c
b/net/mac80211/mlme.c
index 59e2e06aa4e9f4e3150010b1bf4e212d47c4b343..45fbb9e33746e5817252a554a7fdff6ec8265eee 100644
(file)
--- a/
net/mac80211/mlme.c
+++ b/
net/mac80211/mlme.c
@@
-1982,8
+1982,7
@@
void ieee80211_sta_work(struct ieee80211_sub_if_data *sdata)
wiphy_debug(local->hw.wiphy,
"%s: No ack for nullfunc frame to"
" AP %pM, disconnecting.\n",
- sdata->name, bssid,
- ifmgd->probe_send_count);
+ sdata->name, bssid);
#endif
ieee80211_sta_connection_lost(sdata, bssid);
}