diff options
author | Johannes Berg <johannes.berg@intel.com> | 2013-05-31 04:17:19 -0400 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2013-05-31 04:22:34 -0400 |
commit | 3c15a0fb61e743bc72e2d7e01e968f0247a8be8b (patch) | |
tree | f9a05da52ad9ba672ac8c20a045405c0cbba8fa7 /drivers/net/wireless/iwlwifi/mvm/mac80211.c | |
parent | f4d57941bf89997bad3294f94987caebf2771a33 (diff) |
Revert "iwlwifi: mvm: remove P2P_DEVICE support"
This reverts commit eebfc9394ee31b3ef162692c0cd483c1318a4395.
This wasn't intended to be included here, my mistake. I
accidentally merged a mac80211 fixes tree here that had
this change, when it wasn't even intended to be there.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/mac80211.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/mac80211.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/iwlwifi/mvm/mac80211.c index 11dc7df8bdf9..dd158ec571fb 100644 --- a/drivers/net/wireless/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/iwlwifi/mvm/mac80211.c | |||
@@ -84,6 +84,15 @@ static const struct ieee80211_iface_limit iwl_mvm_limits[] = { | |||
84 | .types = BIT(NL80211_IFTYPE_STATION) | | 84 | .types = BIT(NL80211_IFTYPE_STATION) | |
85 | BIT(NL80211_IFTYPE_AP), | 85 | BIT(NL80211_IFTYPE_AP), |
86 | }, | 86 | }, |
87 | { | ||
88 | .max = 1, | ||
89 | .types = BIT(NL80211_IFTYPE_P2P_CLIENT) | | ||
90 | BIT(NL80211_IFTYPE_P2P_GO), | ||
91 | }, | ||
92 | { | ||
93 | .max = 1, | ||
94 | .types = BIT(NL80211_IFTYPE_P2P_DEVICE), | ||
95 | }, | ||
87 | }; | 96 | }; |
88 | 97 | ||
89 | static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = { | 98 | static const struct ieee80211_iface_combination iwl_mvm_iface_combinations[] = { |
@@ -152,7 +161,10 @@ int iwl_mvm_mac_setup_register(struct iwl_mvm *mvm) | |||
152 | hw->chanctx_data_size = sizeof(struct iwl_mvm_phy_ctxt); | 161 | hw->chanctx_data_size = sizeof(struct iwl_mvm_phy_ctxt); |
153 | 162 | ||
154 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | | 163 | hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | |
155 | BIT(NL80211_IFTYPE_AP); | 164 | BIT(NL80211_IFTYPE_P2P_CLIENT) | |
165 | BIT(NL80211_IFTYPE_AP) | | ||
166 | BIT(NL80211_IFTYPE_P2P_GO) | | ||
167 | BIT(NL80211_IFTYPE_P2P_DEVICE); | ||
156 | 168 | ||
157 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY | | 169 | hw->wiphy->flags |= WIPHY_FLAG_CUSTOM_REGULATORY | |
158 | WIPHY_FLAG_DISABLE_BEACON_HINTS | | 170 | WIPHY_FLAG_DISABLE_BEACON_HINTS | |