X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=package%2Fmac80211%2Fpatches%2F410-ath9k_allow_adhoc_and_ap.patch;h=aabf3c3f4963f5d5dbe4fd156c7dfdd1f1515b69;hb=f0ce8c9691f4d0b0b79f6be2132883e4328ec50f;hp=a2faaa423596efcaa77a022649938fe2d806482a;hpb=437bd1772aceb2fc48ac5b11d68b366d0516715e;p=openwrt.git diff --git a/package/mac80211/patches/410-ath9k_allow_adhoc_and_ap.patch b/package/mac80211/patches/410-ath9k_allow_adhoc_and_ap.patch index a2faaa4235..aabf3c3f49 100644 --- a/package/mac80211/patches/410-ath9k_allow_adhoc_and_ap.patch +++ b/package/mac80211/patches/410-ath9k_allow_adhoc_and_ap.patch @@ -1,34 +1,10 @@ ---- a/drivers/net/wireless/ath/ath9k/main.c -+++ b/drivers/net/wireless/ath/ath9k/main.c -@@ -1490,15 +1490,6 @@ static int ath9k_add_interface(struct ie - } - } - -- if ((ah->opmode == NL80211_IFTYPE_ADHOC) || -- ((vif->type == NL80211_IFTYPE_ADHOC) && -- sc->nvifs > 0)) { -- ath_err(common, "Cannot create ADHOC interface when other" -- " interfaces already exist.\n"); -- ret = -EINVAL; -- goto out; -- } -- - ath_dbg(common, ATH_DBG_CONFIG, - "Attach a VIF of type: %d\n", vif->type); - -@@ -1524,15 +1515,6 @@ static int ath9k_change_interface(struct - mutex_lock(&sc->mutex); - ath9k_ps_wakeup(sc); - -- /* See if new interface type is valid. */ -- if ((new_type == NL80211_IFTYPE_ADHOC) && -- (sc->nvifs > 1)) { -- ath_err(common, "When using ADHOC, it must be the only" -- " interface.\n"); -- ret = -EINVAL; -- goto out; -- } -- - if (ath9k_uses_beacons(new_type) && - !ath9k_uses_beacons(vif->type)) { - if (sc->nbcnvifs >= ATH_BCBUF) { +--- a/drivers/net/wireless/ath/ath9k/init.c ++++ b/drivers/net/wireless/ath/ath9k/init.c +@@ -667,6 +667,7 @@ static const struct ieee80211_iface_limi + #ifdef CONFIG_MAC80211_MESH + BIT(NL80211_IFTYPE_MESH_POINT) | + #endif ++ BIT(NL80211_IFTYPE_ADHOC) | + BIT(NL80211_IFTYPE_AP) | + BIT(NL80211_IFTYPE_P2P_GO) }, + };