diff options
author | Jérôme Pouiller <jerome.pouiller@silabs.com> | 2020-04-20 18:03:11 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-04-23 13:26:06 +0200 |
commit | 6ac29cc5af297098b7066e0eb3b6b9732a532f59 (patch) | |
tree | 8b1c74b79e94e25850771b44cc6d9eaf26678cc5 /drivers/staging/wfx/sta.c | |
parent | 4b815a9da5e24a86264cedad15ee6c2d94716c8f (diff) |
staging: wfx: drop unused attribute 'join_complete_status'
The field join_complete_status is never read. Drop it.
Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20200420160311.57323-17-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/wfx/sta.c')
-rw-r--r-- | drivers/staging/wfx/sta.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/wfx/sta.c b/drivers/staging/wfx/sta.c index 1e43e3b65953..5d5c8951f50b 100644 --- a/drivers/staging/wfx/sta.c +++ b/drivers/staging/wfx/sta.c @@ -361,10 +361,8 @@ static void wfx_do_join(struct wfx_vif *wvif) ret = hif_join(wvif, conf, wvif->channel, ssid, ssidlen); if (ret) { ieee80211_connection_loss(wvif->vif); - wvif->join_complete_status = -1; wfx_do_unjoin(wvif); } else { - wvif->join_complete_status = 0; /* Due to beacon filtering it is possible that the * AP's beacon is not known for the mac80211 stack. * Disable filtering temporary to make sure the stack |