|
@@ -1073,6 +1073,9 @@ static int wl1271_op_add_interface(struct ieee80211_hw *hw,
|
|
|
wl->bss_type = BSS_TYPE_IBSS;
|
|
|
wl->set_bss_type = BSS_TYPE_STA_BSS;
|
|
|
break;
|
|
|
+ case NL80211_IFTYPE_AP:
|
|
|
+ wl->bss_type = BSS_TYPE_AP_BSS;
|
|
|
+ break;
|
|
|
default:
|
|
|
ret = -EOPNOTSUPP;
|
|
|
goto out;
|
|
@@ -3136,7 +3139,7 @@ int wl1271_init_ieee80211(struct wl1271 *wl)
|
|
|
wl->hw->wiphy->n_cipher_suites = ARRAY_SIZE(cipher_suites);
|
|
|
|
|
|
wl->hw->wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
|
|
|
- BIT(NL80211_IFTYPE_ADHOC);
|
|
|
+ BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP);
|
|
|
wl->hw->wiphy->max_scan_ssids = 1;
|
|
|
/*
|
|
|
* Maximum length of elements in scanning probe request templates
|