summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorJérôme Pouiller <jerome.pouiller@silabs.com>2020-04-10 15:32:34 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2020-04-13 14:42:48 +0200
commit17c8cc79ef72a5791a7c5223d9f5905cdaa69f30 (patch)
tree4d3e7c540193d8a54dc5292ea31e0f8e3ee068b8 /drivers
parent7b063f3bfbcd76b50b894ba16ed38a065ca33e07 (diff)
downloadlinux-17c8cc79ef72a5791a7c5223d9f5905cdaa69f30.tar.bz2
staging: wfx: allow to join IBSS networks
Current code does not permit to join an already existing IBSS network. Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com> Link: https://lore.kernel.org/r/20200410133239.438347-15-Jerome.Pouiller@silabs.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/wfx/sta.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/wfx/sta.c b/drivers/staging/wfx/sta.c
index 75f1c515751b..8aa373f5deae 100644
--- a/drivers/staging/wfx/sta.c
+++ b/drivers/staging/wfx/sta.c
@@ -484,7 +484,7 @@ static void wfx_do_join(struct wfx_vif *wvif)
wvif->beacon_int = 1;
rcu_read_lock(); // protect ssidie
- if (!conf->ibss_joined)
+ if (bss)
ssidie = ieee80211_bss_get_ie(bss, WLAN_EID_SSID);
if (ssidie) {
ssidlen = ssidie[1];