diff options
author | Florian Fainelli <florian@openwrt.org> | 2010-11-25 11:57:48 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2010-11-25 11:57:48 +0000 |
commit | c6104d485916b5e33e89143fd6c77f04d0216674 (patch) | |
tree | 2e798f4a86964d9e1d0b9e62d8254ffe9149ab59 /package/acx-mac80211/patches | |
parent | 1ae1fb6b50a8cb8f036a075f0978c447dcdd4f1c (diff) | |
download | upstream-c6104d485916b5e33e89143fd6c77f04d0216674.tar.gz upstream-c6104d485916b5e33e89143fd6c77f04d0216674.tar.bz2 upstream-c6104d485916b5e33e89143fd6c77f04d0216674.zip |
[ar7] update acx-mac80211 to 20101030 snapshot, patch from sn9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@24137 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/acx-mac80211/patches')
-rw-r--r-- | package/acx-mac80211/patches/001-wlan_cipher_suite.patch | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/package/acx-mac80211/patches/001-wlan_cipher_suite.patch b/package/acx-mac80211/patches/001-wlan_cipher_suite.patch deleted file mode 100644 index f9d9409073..0000000000 --- a/package/acx-mac80211/patches/001-wlan_cipher_suite.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff --git a/common.c b/common.c -index 69cdf5b..28b3750 100644 ---- a/common.c -+++ b/common.c -@@ -5765,8 +5765,9 @@ int acx_e_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, - * TODO WEP hw support can still be added later, if required. - */ - -- switch (key->alg) { -- case ALG_WEP: -+ switch (key->cipher) { -+ case WLAN_CIPHER_SUITE_WEP40: -+ case WLAN_CIPHER_SUITE_WEP104: - if (key->keylen == 5) { - algorithm = ACX_SEC_ALGO_WEP; - log(L_INIT, "acx: %s: algorithm=%i: %s\n", __func__, algorithm, "ACX_SEC_ALGO_WEP"); -@@ -5778,14 +5779,14 @@ int acx_e_op_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd, - err = -EOPNOTSUPP; - break; - -- case ALG_TKIP: -+ case WLAN_CIPHER_SUITE_TKIP: - algorithm = ACX_SEC_ALGO_TKIP; - log(L_INIT, "acx: %s: algorithm=%i: %s\n", __func__, algorithm, "ACX_SEC_ALGO_TKIP"); - err = -EOPNOTSUPP; - break; - - break; -- case ALG_CCMP: -+ case WLAN_CIPHER_SUITE_CCMP: - algorithm = ACX_SEC_ALGO_AES; - log(L_INIT, "acx: %s: algorithm=%i: %s\n", __func__, algorithm, "ACX_SEC_ALGO_AES"); - err = -EOPNOTSUPP; |