diff options
author | Eric Biggers <ebiggers@google.com> | 2020-01-02 20:04:39 -0800 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-01-09 11:30:58 +0800 |
commit | a24a1fd731274ebbca873000e2c7fbe8224ae4c8 (patch) | |
tree | 1169096d663feefc1dc6f686fe94cfeba753fae6 /crypto/ahash.c | |
parent | a39c66cc2f6108c8346dc882bdcf72861aaca956 (diff) | |
download | linux-a24a1fd731274ebbca873000e2c7fbe8224ae4c8.tar.bz2 |
crypto: algapi - remove crypto_template::{alloc,free}()
Now that all templates provide a ->create() method which creates an
instance, installs a strongly-typed ->free() method directly to it, and
registers it, the older ->alloc() and ->free() methods in
'struct crypto_template' are no longer used. Remove them.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/ahash.c')
-rw-r--r-- | crypto/ahash.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/crypto/ahash.c b/crypto/ahash.c index 61e374d76b04..cd5d9847d513 100644 --- a/crypto/ahash.c +++ b/crypto/ahash.c @@ -515,11 +515,6 @@ static void crypto_ahash_free_instance(struct crypto_instance *inst) { struct ahash_instance *ahash = ahash_instance(inst); - if (!ahash->free) { - inst->tmpl->free(inst); - return; - } - ahash->free(ahash); } |