diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-24 21:16:47 +0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-01-27 20:35:50 +0800 |
commit | a60b7fafd2d3ab51cf085e816627cbb4ef2f311b (patch) | |
tree | 8fc109e699a400bdf3ced28167c14378cd1f6356 /drivers/net/wireless/intersil/orinoco/orinoco.h | |
parent | bbdb23b5d69521a2e3059b33d1f6ed8e1216118a (diff) | |
download | blackbird-obmc-linux-a60b7fafd2d3ab51cf085e816627cbb4ef2f311b.tar.gz blackbird-obmc-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; |