diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-24 14:16:47 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-27 13:35:50 +0100 |
commit | a60b7fafd2d3ab51cf085e816627cbb4ef2f311b (patch) | |
tree | 8fc109e699a400bdf3ced28167c14378cd1f6356 /drivers/net/wireless/intersil/orinoco/orinoco.h | |
parent | dm crypt: Use skcipher and ahash (diff) | |
download | linux-a60b7fafd2d3ab51cf085e816627cbb4ef2f311b.tar.xz linux-a60b7fafd2d3ab51cf085e816627cbb4ef2f311b.zip |
orinoco: Use ahash
This patch replaces uses the long obsolete hash interface with ahash.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/net/wireless/intersil/orinoco/orinoco.h')
-rw-r--r-- | drivers/net/wireless/intersil/orinoco/orinoco.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/intersil/orinoco/orinoco.h b/drivers/net/wireless/intersil/orinoco/orinoco.h index eebd2be21ee9..2f0c84b1c440 100644 --- a/drivers/net/wireless/intersil/orinoco/orinoco.h +++ b/drivers/net/wireless/intersil/orinoco/orinoco.h @@ -152,8 +152,8 @@ struct orinoco_private { u8 *wpa_ie; int wpa_ie_len; - struct crypto_hash *rx_tfm_mic; - struct crypto_hash *tx_tfm_mic; + struct crypto_ahash *rx_tfm_mic; + struct crypto_ahash *tx_tfm_mic; unsigned int wpa_enabled:1; unsigned int tkip_cm_active:1; |