projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4e56cde
)
mac8211: fix struct initialisation
author
John Crispin
<john@phrozen.org>
Mon, 3 Aug 2020 08:45:40 +0000
(10:45 +0200)
committer
Johannes Berg
<johannes.berg@intel.com>
Mon, 3 Aug 2020 08:55:17 +0000
(10:55 +0200)
Sparse showed up with the following error.
net/mac80211/agg-rx.c:480:43: warning: Using plain integer as NULL pointer
Fixes:
2ab45876756f
(mac80211: add support for the ADDBA extension element)
Signed-off-by: John Crispin <john@phrozen.org>
Link:
https://lore.kernel.org/r/20200803084540.179908-1-john@phrozen.org
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/agg-rx.c
patch
|
blob
|
history
diff --git
a/net/mac80211/agg-rx.c
b/net/mac80211/agg-rx.c
index
7f245e9
..
313ba97
100644
(file)
--- a/
net/mac80211/agg-rx.c
+++ b/
net/mac80211/agg-rx.c
@@
-477,7
+477,7
@@
void ieee80211_process_addba_request(struct ieee80211_local *local,
size_t len)
{
u16 capab, tid, timeout, ba_policy, buf_size, start_seq_num;
- struct ieee802_11_elems elems = {
0
};
+ struct ieee802_11_elems elems = { };
u8 dialog_token;
int ies_len;