diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-08-09 11:03:16 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2016-08-09 18:47:29 +0800 |
commit | 3e5c66c9c31afecf1d6f7ef4ffc50ac3c1ff3c7c (patch) | |
tree | 76a6dab7f4a6bae92453bc07ae2c25ec1c2d5c69 /drivers/crypto/marvell | |
parent | 2a8a78573b346b1da5f1b544985d65d1e08a6148 (diff) | |
download | linux-stable-3e5c66c9c31afecf1d6f7ef4ffc50ac3c1ff3c7c.tar.gz linux-stable-3e5c66c9c31afecf1d6f7ef4ffc50ac3c1ff3c7c.tar.bz2 linux-stable-3e5c66c9c31afecf1d6f7ef4ffc50ac3c1ff3c7c.zip |
crypto: marvell - turn mv_cesa_ahash_init() into a function returning void
The mv_cesa_ahash_init() function always returns 0, and the return
value is anyway never checked. Turn it into a function returning void.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/marvell')
-rw-r--r-- | drivers/crypto/marvell/hash.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/crypto/marvell/hash.c b/drivers/crypto/marvell/hash.c index 0d7f5f9ace14..729166435a8d 100644 --- a/drivers/crypto/marvell/hash.c +++ b/drivers/crypto/marvell/hash.c @@ -374,7 +374,7 @@ static const struct mv_cesa_req_ops mv_cesa_ahash_req_ops = { .complete = mv_cesa_ahash_complete, }; -static int mv_cesa_ahash_init(struct ahash_request *req, +static void mv_cesa_ahash_init(struct ahash_request *req, struct mv_cesa_op_ctx *tmpl, bool algo_le) { struct mv_cesa_ahash_req *creq = ahash_request_ctx(req); @@ -390,8 +390,6 @@ static int mv_cesa_ahash_init(struct ahash_request *req, creq->op_tmpl = *tmpl; creq->len = 0; creq->algo_le = algo_le; - - return 0; } static inline int mv_cesa_ahash_cra_init(struct crypto_tfm *tfm) |