aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/rt2x00/rt2x00mac.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2x00mac.c')
-rw-r--r--drivers/net/wireless/rt2x00/rt2x00mac.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2x00mac.c b/drivers/net/wireless/rt2x00/rt2x00mac.c
index e46d406637f7..e078e0ad0d06 100644
--- a/drivers/net/wireless/rt2x00/rt2x00mac.c
+++ b/drivers/net/wireless/rt2x00/rt2x00mac.c
@@ -201,13 +201,12 @@ int rt2x00mac_add_interface(struct ieee80211_hw *hw,
201 return -ENODEV; 201 return -ENODEV;
202 202
203 /* 203 /*
204 * When we don't support mixed interfaces (a combination 204 * We don't support mixed combinations of sta and ap virtual
205 * of sta and ap virtual interfaces) then we can only 205 * interfaces. We can only add this interface when the rival
206 * add this interface when the rival interface count is 0. 206 * interface count is 0.
207 */ 207 */
208 if (!test_bit(DRIVER_SUPPORT_MIXED_INTERFACES, &rt2x00dev->flags) && 208 if ((conf->type == IEEE80211_IF_TYPE_AP && rt2x00dev->intf_sta_count) ||
209 ((conf->type == IEEE80211_IF_TYPE_AP && rt2x00dev->intf_sta_count) || 209 (conf->type != IEEE80211_IF_TYPE_AP && rt2x00dev->intf_ap_count))
210 (conf->type != IEEE80211_IF_TYPE_AP && rt2x00dev->intf_ap_count)))
211 return -ENOBUFS; 210 return -ENOBUFS;
212 211
213 /* 212 /*