diff options
author | Eric Biggers | 2020-07-09 23:20:36 -0700 |
---|---|---|
committer | Herbert Xu | 2020-07-16 21:49:07 +1000 |
commit | e72b48c5e7fe0c9fabeb23385b6e6f02f0a78d37 (patch) | |
tree | 5086172f2e0ab1ca39e9825160323057c9bd6f3a /crypto/seqiv.c | |
parent | d7866e503bdca854e6bc64521f030404d7cab642 (diff) |
crypto: geniv - remove unneeded arguments from aead_geniv_alloc()
The type and mask arguments to aead_geniv_alloc() are always 0, so
remove them.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/seqiv.c')
-rw-r--r-- | crypto/seqiv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/seqiv.c b/crypto/seqiv.c index f124b9b54e15..e48f875a7aac 100644 --- a/crypto/seqiv.c +++ b/crypto/seqiv.c @@ -138,7 +138,7 @@ static int seqiv_aead_create(struct crypto_template *tmpl, struct rtattr **tb) struct aead_instance *inst; int err; - inst = aead_geniv_alloc(tmpl, tb, 0, 0); + inst = aead_geniv_alloc(tmpl, tb); if (IS_ERR(inst)) return PTR_ERR(inst); |