crypto: cpt - Use request_complete helpers

Use the request_complete helpers instead of calling the completion
function directly.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Herbert Xu 2023-01-31 16:02:15 +08:00
Родитель 33ccbfd2e0
Коммит b34a641672
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -28,7 +28,7 @@ static void cvm_callback(u32 status, void *arg)
{ {
struct crypto_async_request *req = (struct crypto_async_request *)arg; struct crypto_async_request *req = (struct crypto_async_request *)arg;
req->complete(req, !status); crypto_request_complete(req, !status);
} }
static inline void update_input_iv(struct cpt_request_info *req_info, static inline void update_input_iv(struct cpt_request_info *req_info,