diff options
author | Eyal Shapira <eyal@wizery.com> | 2012-06-15 13:32:11 +0300 |
---|---|---|
committer | Arik Nemtsov <arik@wizery.com> | 2012-08-02 13:04:02 +0300 |
commit | b0f48bcc8a61cf620412202166d0d6947f3ba26e (patch) | |
tree | 75a3d26d49f7cfdc072ab982d3c523b3eb3be222 | |
parent | a96ab01f2149726f4212aeaaa97fe7d39424b90e (diff) | |
download | external_wpa_supplicant_8_ti-b0f48bcc8a61cf620412202166d0d6947f3ba26e.zip external_wpa_supplicant_8_ti-b0f48bcc8a61cf620412202166d0d6947f3ba26e.tar.gz external_wpa_supplicant_8_ti-b0f48bcc8a61cf620412202166d0d6947f3ba26e.tar.bz2 |
nl80211: avoid using another interface for P2P GO (INTERNAL)
Relevant for wl6/7 only, we need to figure out the wl8 MR case.
We now declare iface combinations in wlcore due to cfg80211
enforcement of that. Since we declare support for concurrent
STA and P2P_GO, wpa_s would like to use another interface for
GO. However, since we don't really support P2P_GO so well in MR
but we do want to enable it in MR, prevent wpa_s from using P2P
concurrent mode.
This should be removed once we support P2P_GO properly in MR.
[Arik - should be changed to a configuration parameter to wpa_s, and the
current default should be preserved]
Signed-off-by: Eyal Shapira <eyal@wizery.com>
-rw-r--r-- | src/drivers/driver_nl80211.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/drivers/driver_nl80211.c b/src/drivers/driver_nl80211.c index a7e1659..a0145db 100644 --- a/src/drivers/driver_nl80211.c +++ b/src/drivers/driver_nl80211.c @@ -2510,7 +2510,6 @@ static int wiphy_info_handler(struct nl_msg *msg, void *arg) } if (combination_has_p2p && combination_has_mgd) { - p2p_concurrent = 1; break; } |