From: Herbert Xu Date: Tue, 31 Jan 2023 08:02:12 +0000 (+0800) Subject: crypto: bcm - Use request_complete helpers X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=33ccbfd2e02a04d2fdbf8f48a80230f6235493bd;p=linux.git crypto: bcm - Use request_complete helpers Use the request_complete helpers instead of calling the completion function directly. Signed-off-by: Herbert Xu --- diff --git a/drivers/crypto/bcm/cipher.c b/drivers/crypto/bcm/cipher.c index f8e035039aeb0..70b911baab26d 100644 --- a/drivers/crypto/bcm/cipher.c +++ b/drivers/crypto/bcm/cipher.c @@ -1614,7 +1614,7 @@ static void finish_req(struct iproc_reqctx_s *rctx, int err) spu_chunk_cleanup(rctx); if (areq) - areq->complete(areq, err); + crypto_request_complete(areq, err); } /**