diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-11 09:48:08 (GMT) |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-05-13 02:31:44 (GMT) |
commit | 9611ef63c27709f57639ab49fe3977c5947038a5 (patch) | |
tree | 42d580bf31bf6df9221220f5e58ec8484639959d /drivers/crypto/picoxcell_crypto.c | |
parent | 71b311d6108ecc69bf6034e03cb6bdf09335dd2c (diff) | |
download | linux-9611ef63c27709f57639ab49fe3977c5947038a5.tar.xz |
crypto: picoxcell - Use crypto_aead_set_reqsize helper
This patch uses the crypto_aead_set_reqsize helper to avoid directly
touching the internals of aead.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/picoxcell_crypto.c')
-rw-r--r-- | drivers/crypto/picoxcell_crypto.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/crypto/picoxcell_crypto.c b/drivers/crypto/picoxcell_crypto.c index 135817f..eb2a0ca 100644 --- a/drivers/crypto/picoxcell_crypto.c +++ b/drivers/crypto/picoxcell_crypto.c @@ -790,7 +790,8 @@ static int spacc_aead_cra_init(struct crypto_tfm *tfm) get_random_bytes(ctx->salt, sizeof(ctx->salt)); - tfm->crt_aead.reqsize = sizeof(struct spacc_req); + crypto_aead_set_reqsize(__crypto_aead_cast(tfm), + sizeof(struct spacc_req)); return 0; } |