diff options
author | Johannes Berg <johannes.berg@intel.com> | 2023-06-06 14:13:20 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2023-06-06 14:13:26 +0200 |
commit | 91f53ae97cb1a8c1c26f6cbcf9e2dc1cdff9b012 (patch) | |
tree | a4273fbb3b945b168bcc387d45a2b86956ae097c /net/mac80211/util.c | |
parent | wifi: mac80211: HW restart for MLO (diff) | |
download | linux-91f53ae97cb1a8c1c26f6cbcf9e2dc1cdff9b012.tar.xz linux-91f53ae97cb1a8c1c26f6cbcf9e2dc1cdff9b012.zip |
wifi: mac80211: remove element scratch_len
This isn't used, and there isn't really a good way it
could be used, so just remove that.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to '')
-rw-r--r-- | net/mac80211/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c index 75c517dc8bee..22871e4a9f0f 100644 --- a/net/mac80211/util.c +++ b/net/mac80211/util.c @@ -1604,7 +1604,7 @@ ieee802_11_parse_elems_full(struct ieee80211_elems_parse_params *params) const struct element *non_inherit = NULL; u8 *nontransmitted_profile; int nontransmitted_profile_len = 0; - size_t scratch_len = params->scratch_len ?: 3 * params->len; + size_t scratch_len = 3 * params->len; elems = kzalloc(sizeof(*elems) + scratch_len, GFP_ATOMIC); if (!elems) |