diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2015-08-13 05:29:06 -0400 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-08-17 04:53:53 -0400 |
commit | 5e4b8c1fcc70016f43926203ae1820c3b380d5cd (patch) | |
tree | 8439eec2c8edbe8bf98a37fb6db3d652468832b1 /crypto/algif_aead.c | |
parent | b0d955ba4688fcba8112884931aea1f1e6f50f03 (diff) |
crypto: aead - Remove CRYPTO_ALG_AEAD_NEW flag
This patch removes the CRYPTO_ALG_AEAD_NEW flag now that everyone
has been converted.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/algif_aead.c')
-rw-r--r-- | crypto/algif_aead.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/algif_aead.c b/crypto/algif_aead.c index e0408a480d2f..38a6cab7aeca 100644 --- a/crypto/algif_aead.c +++ b/crypto/algif_aead.c | |||
@@ -514,8 +514,7 @@ static struct proto_ops algif_aead_ops = { | |||
514 | 514 | ||
515 | static void *aead_bind(const char *name, u32 type, u32 mask) | 515 | static void *aead_bind(const char *name, u32 type, u32 mask) |
516 | { | 516 | { |
517 | return crypto_alloc_aead(name, type | CRYPTO_ALG_AEAD_NEW, | 517 | return crypto_alloc_aead(name, type, mask); |
518 | mask | CRYPTO_ALG_AEAD_NEW); | ||
519 | } | 518 | } |
520 | 519 | ||
521 | static void aead_release(void *private) | 520 | static void aead_release(void *private) |