Skip to content

Commit b34a641

Browse files
committed
crypto: cpt - Use request_complete helpers
Use the request_complete helpers instead of calling the completion function directly. Signed-off-by: Herbert Xu <[email protected]>
1 parent 33ccbfd commit b34a641

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/crypto/cavium/cpt/cptvf_algs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ static void cvm_callback(u32 status, void *arg)
2828
{
2929
struct crypto_async_request *req = (struct crypto_async_request *)arg;
3030

31-
req->complete(req, !status);
31+
crypto_request_complete(req, !status);
3232
}
3333

3434
static inline void update_input_iv(struct cpt_request_info *req_info,

0 commit comments

Comments
 (0)