diff options
author | Johannes Berg <johannes.berg@intel.com> | 2022-06-24 15:54:38 +0200 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2022-07-15 11:43:16 +0200 |
commit | 7ebe994fbd2da8160ebc178c883ad92dc5e57dcf (patch) | |
tree | 735bf3c3c8c11b4f3c41322fc52b497dcebbed3c | |
parent | b3e2130bf5f6c66831707cd51a8b13007137ac37 (diff) | |
download | linux-7ebe994fbd2da8160ebc178c883ad92dc5e57dcf.tar.bz2 |
wifi: mac80211: remove unused bssid variable
This variable is only written to, remove it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
-rw-r--r-- | net/mac80211/mlme.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c index 44f76a8fa80b..7eab15920a70 100644 --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -6365,7 +6365,6 @@ int ieee80211_mgd_deauth(struct ieee80211_sub_if_data *sdata, int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata, struct cfg80211_disassoc_request *req) { - u8 bssid[ETH_ALEN]; u8 frame_buf[IEEE80211_DEAUTH_FRAME_LEN]; /* @@ -6381,7 +6380,6 @@ int ieee80211_mgd_disassoc(struct ieee80211_sub_if_data *sdata, "disassociating from %pM by local choice (Reason: %u=%s)\n", req->bss->bssid, req->reason_code, ieee80211_get_reason_code_string(req->reason_code)); - memcpy(bssid, req->bss->bssid, ETH_ALEN); ieee80211_set_disassoc(sdata, IEEE80211_STYPE_DISASSOC, req->reason_code, !req->local_state_change, frame_buf); |