summaryrefslogtreecommitdiffstats
path: root/crypto/algif_aead.c
diff options
context:
space:
mode:
authorHerbert Xu2015-08-13 11:29:06 +0200
committerHerbert Xu2015-08-17 10:53:53 +0200
commit5e4b8c1fcc70016f43926203ae1820c3b380d5cd (patch)
tree8439eec2c8edbe8bf98a37fb6db3d652468832b1 /crypto/algif_aead.c
parentcrypto: aead - Remove old AEAD interfaces (diff)
downloadkernel-qcow2-linux-5e4b8c1fcc70016f43926203ae1820c3b380d5cd.tar.gz
kernel-qcow2-linux-5e4b8c1fcc70016f43926203ae1820c3b380d5cd.tar.xz
kernel-qcow2-linux-5e4b8c1fcc70016f43926203ae1820c3b380d5cd.zip
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.c3
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 = {
static void *aead_bind(const char *name, u32 type, u32 mask)
{
- return crypto_alloc_aead(name, type | CRYPTO_ALG_AEAD_NEW,
- mask | CRYPTO_ALG_AEAD_NEW);
+ return crypto_alloc_aead(name, type, mask);
}
static void aead_release(void *private)