diff options
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/api.c | 4 | ||||
-rw-r--r-- | crypto/pcompress.c | 6 | ||||
-rw-r--r-- | crypto/shash.c | 6 |
3 files changed, 6 insertions, 10 deletions
diff --git a/crypto/api.c b/crypto/api.c index c8ac18f7ac1e..798526d90538 100644 --- a/crypto/api.c +++ b/crypto/api.c | |||
@@ -457,7 +457,7 @@ void *crypto_create_tfm(struct crypto_alg *alg, | |||
457 | int err = -ENOMEM; | 457 | int err = -ENOMEM; |
458 | 458 | ||
459 | tfmsize = frontend->tfmsize; | 459 | tfmsize = frontend->tfmsize; |
460 | total = tfmsize + sizeof(*tfm) + frontend->extsize(alg, frontend); | 460 | total = tfmsize + sizeof(*tfm) + frontend->extsize(alg); |
461 | 461 | ||
462 | mem = kzalloc(total, GFP_KERNEL); | 462 | mem = kzalloc(total, GFP_KERNEL); |
463 | if (mem == NULL) | 463 | if (mem == NULL) |
@@ -466,7 +466,7 @@ void *crypto_create_tfm(struct crypto_alg *alg, | |||
466 | tfm = (struct crypto_tfm *)(mem + tfmsize); | 466 | tfm = (struct crypto_tfm *)(mem + tfmsize); |
467 | tfm->__crt_alg = alg; | 467 | tfm->__crt_alg = alg; |
468 | 468 | ||
469 | err = frontend->init_tfm(tfm, frontend); | 469 | err = frontend->init_tfm(tfm); |
470 | if (err) | 470 | if (err) |
471 | goto out_free_tfm; | 471 | goto out_free_tfm; |
472 | 472 | ||
diff --git a/crypto/pcompress.c b/crypto/pcompress.c index bcadc03726b7..f7c4a7d7412e 100644 --- a/crypto/pcompress.c +++ b/crypto/pcompress.c | |||
@@ -36,14 +36,12 @@ static int crypto_pcomp_init(struct crypto_tfm *tfm, u32 type, u32 mask) | |||
36 | return 0; | 36 | return 0; |
37 | } | 37 | } |
38 | 38 | ||
39 | static unsigned int crypto_pcomp_extsize(struct crypto_alg *alg, | 39 | static unsigned int crypto_pcomp_extsize(struct crypto_alg *alg) |
40 | const struct crypto_type *frontend) | ||
41 | { | 40 | { |
42 | return alg->cra_ctxsize; | 41 | return alg->cra_ctxsize; |
43 | } | 42 | } |
44 | 43 | ||
45 | static int crypto_pcomp_init_tfm(struct crypto_tfm *tfm, | 44 | static int crypto_pcomp_init_tfm(struct crypto_tfm *tfm) |
46 | const struct crypto_type *frontend) | ||
47 | { | 45 | { |
48 | return 0; | 46 | return 0; |
49 | } | 47 | } |
diff --git a/crypto/shash.c b/crypto/shash.c index 3b1b06b3dcf3..7063e1421504 100644 --- a/crypto/shash.c +++ b/crypto/shash.c | |||
@@ -448,8 +448,7 @@ static unsigned int crypto_shash_ctxsize(struct crypto_alg *alg, u32 type, | |||
448 | return 0; | 448 | return 0; |
449 | } | 449 | } |
450 | 450 | ||
451 | static int crypto_shash_init_tfm(struct crypto_tfm *tfm, | 451 | static int crypto_shash_init_tfm(struct crypto_tfm *tfm) |
452 | const struct crypto_type *frontend) | ||
453 | { | 452 | { |
454 | struct crypto_shash *hash = __crypto_shash_cast(tfm); | 453 | struct crypto_shash *hash = __crypto_shash_cast(tfm); |
455 | 454 | ||
@@ -457,8 +456,7 @@ static int crypto_shash_init_tfm(struct crypto_tfm *tfm, | |||
457 | return 0; | 456 | return 0; |
458 | } | 457 | } |
459 | 458 | ||
460 | static unsigned int crypto_shash_extsize(struct crypto_alg *alg, | 459 | static unsigned int crypto_shash_extsize(struct crypto_alg *alg) |
461 | const struct crypto_type *frontend) | ||
462 | { | 460 | { |
463 | return alg->cra_ctxsize; | 461 | return alg->cra_ctxsize; |
464 | } | 462 | } |