diff options
author | James Ketrenos <jketreno@linux.intel.com> | 2005-09-13 18:35:21 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-16 03:06:32 -0400 |
commit | 74079fdce472a2b16d502fe39e06b135ef06c69b (patch) | |
tree | a2f097836efccc5b4758888bd97599aecd56e37e /net/ieee80211/ieee80211_crypt.c | |
parent | b1b508e1b13529b3cc5b59c352f49b9b58a302b6 (diff) |
[PATCH] ieee80211 Added wireless spy support
Added wireless spy support to Rx code path.
Signed-off-by: James Ketrenos <jketreno@linux.intel.com>
NOTE: Looks like scripts/Lindent generated output different
than the Lindented version already in-kernel, hence all the
whitespace deltas... *sigh*
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'net/ieee80211/ieee80211_crypt.c')
-rw-r--r-- | net/ieee80211/ieee80211_crypt.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/net/ieee80211/ieee80211_crypt.c b/net/ieee80211/ieee80211_crypt.c index 61a9d92e455b..dc835f68edd3 100644 --- a/net/ieee80211/ieee80211_crypt.c +++ b/net/ieee80211/ieee80211_crypt.c | |||
@@ -191,18 +191,18 @@ static void ieee80211_crypt_null_deinit(void *priv) | |||
191 | } | 191 | } |
192 | 192 | ||
193 | static struct ieee80211_crypto_ops ieee80211_crypt_null = { | 193 | static struct ieee80211_crypto_ops ieee80211_crypt_null = { |
194 | .name = "NULL", | 194 | .name = "NULL", |
195 | .init = ieee80211_crypt_null_init, | 195 | .init = ieee80211_crypt_null_init, |
196 | .deinit = ieee80211_crypt_null_deinit, | 196 | .deinit = ieee80211_crypt_null_deinit, |
197 | .encrypt_mpdu = NULL, | 197 | .encrypt_mpdu = NULL, |
198 | .decrypt_mpdu = NULL, | 198 | .decrypt_mpdu = NULL, |
199 | .encrypt_msdu = NULL, | 199 | .encrypt_msdu = NULL, |
200 | .decrypt_msdu = NULL, | 200 | .decrypt_msdu = NULL, |
201 | .set_key = NULL, | 201 | .set_key = NULL, |
202 | .get_key = NULL, | 202 | .get_key = NULL, |
203 | .extra_prefix_len = 0, | 203 | .extra_prefix_len = 0, |
204 | .extra_postfix_len = 0, | 204 | .extra_postfix_len = 0, |
205 | .owner = THIS_MODULE, | 205 | .owner = THIS_MODULE, |
206 | }; | 206 | }; |
207 | 207 | ||
208 | static int __init ieee80211_crypto_init(void) | 208 | static int __init ieee80211_crypto_init(void) |