summaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/ath/ath5k/base.c
diff options
context:
space:
mode:
authorBob Copeland2009-07-14 03:57:39 +0200
committerJohn W. Linville2009-07-21 18:07:42 +0200
commit65b5a69860ed3bc4224368b804d381cd9cafa90a (patch)
treee6d5b99bc84ef7f9d8147e06994762880b7bff0d /drivers/net/wireless/ath/ath5k/base.c
parentmac80211: use correct address for mesh Path Error (diff)
downloadkernel-qcow2-linux-65b5a69860ed3bc4224368b804d381cd9cafa90a.tar.gz
kernel-qcow2-linux-65b5a69860ed3bc4224368b804d381cd9cafa90a.tar.xz
kernel-qcow2-linux-65b5a69860ed3bc4224368b804d381cd9cafa90a.zip
ath5k: temporarily disable crypto for AP mode
Pavel Roskin reported some issues with using AP mode without nohwcrypt=1. Most likely this is similar to the problem fixed some time ago in ath9k by 3f53dd64f192450cb331c0fecfc26ca952fb242f, "ath9k: Fix hw crypto configuration for TKIP in AP mode." That only affects TKIP but it's easiest to just disable that and WEP too until we get a proper fix in. Signed-off-by: Bob Copeland <me@bobcopeland.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/base.c')
-rw-r--r--drivers/net/wireless/ath/ath5k/base.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c
index ea045151f953..029c1bc7468f 100644
--- a/drivers/net/wireless/ath/ath5k/base.c
+++ b/drivers/net/wireless/ath/ath5k/base.c
@@ -2970,6 +2970,9 @@ ath5k_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
if (modparam_nohwcrypt)
return -EOPNOTSUPP;
+ if (sc->opmode == NL80211_IFTYPE_AP)
+ return -EOPNOTSUPP;
+
switch (key->alg) {
case ALG_WEP:
case ALG_TKIP: