diff options
author | Avinash Patil <patila@marvell.com> | 2013-07-23 04:17:58 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2013-07-24 17:02:38 +0200 |
commit | a4df8f56e92104c5e7be82cc2c471e600ea3f9ef (patch) | |
tree | 9645148b79f5f1900c2837cd5001301d89b5bd10 /drivers/net/wireless/mwifiex | |
parent | mwifiex: remove duplicate structure host_cmd_tlv (diff) | |
download | linux-a4df8f56e92104c5e7be82cc2c471e600ea3f9ef.tar.xz linux-a4df8f56e92104c5e7be82cc2c471e600ea3f9ef.zip |
mwifiex: modify mwifiex_ap_sta_limits to advertise support for P2P
We support maximum simultaneous 2 non-AP station interfaces and
they can assume role of Station/P2P client/P2P GO.
Advertise this support to cfg80211 so that concurrent P2P/STA
operation is possible.
Signed-off-by: Avinash Patil <patila@marvell.com>
Signed-off-by: Bing Zhao <bzhao@marvell.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/mwifiex')
-rw-r--r-- | drivers/net/wireless/mwifiex/cfg80211.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/mwifiex/cfg80211.c b/drivers/net/wireless/mwifiex/cfg80211.c index dbdd3b2a5eb5..cc334d529dbe 100644 --- a/drivers/net/wireless/mwifiex/cfg80211.c +++ b/drivers/net/wireless/mwifiex/cfg80211.c @@ -25,7 +25,9 @@ module_param(reg_alpha2, charp, 0); static const struct ieee80211_iface_limit mwifiex_ap_sta_limits[] = { { - .max = 2, .types = BIT(NL80211_IFTYPE_STATION), + .max = 2, .types = BIT(NL80211_IFTYPE_STATION) | + BIT(NL80211_IFTYPE_P2P_GO) | + BIT(NL80211_IFTYPE_P2P_CLIENT), }, { .max = 1, .types = BIT(NL80211_IFTYPE_AP), |