Commit 811e6ed6 authored by Phil Sutter's avatar Phil Sutter Committed by Herbert Xu

crypto: mv_cesa - drop this call to mv_hash_final from mv_hash_finup

The code in mv_hash_final is actually a superset of mv_hash_finup's
body. Since the driver works fine without, drop it.
Signed-off-by: default avatarPhil Sutter <phil.sutter@viprinet.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 99db3eac
...@@ -728,9 +728,6 @@ static int mv_hash_final(struct ahash_request *req) ...@@ -728,9 +728,6 @@ static int mv_hash_final(struct ahash_request *req)
static int mv_hash_finup(struct ahash_request *req) static int mv_hash_finup(struct ahash_request *req)
{ {
if (!req->nbytes)
return mv_hash_final(req);
mv_update_hash_req_ctx(ahash_request_ctx(req), 1, req->nbytes); mv_update_hash_req_ctx(ahash_request_ctx(req), 1, req->nbytes);
return mv_handle_req(&req->base); return mv_handle_req(&req->base);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment