crypto: caam - remove unused authkeylen from caam_ctx

Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Kim Phillips 2011-05-14 22:08:11 -05:00 committed by Herbert Xu
parent ddbb80884a
commit 66664487b1
1 changed files with 0 additions and 2 deletions

View File

@ -83,7 +83,6 @@ struct caam_ctx {
u8 *key;
dma_addr_t key_phys;
unsigned int enckeylen;
unsigned int authkeylen;
unsigned int split_key_len;
unsigned int split_key_pad_len;
unsigned int authsize;
@ -330,7 +329,6 @@ static int aead_authenc_setkey(struct crypto_aead *aead,
#endif
ctx->enckeylen = enckeylen;
ctx->authkeylen = authkeylen;
ret = build_sh_desc_ipsec(ctx);
if (ret) {