File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -413,11 +413,11 @@ static int dcp_chan_thread_aes(void *data)
413
413
set_current_state (TASK_RUNNING );
414
414
415
415
if (backlog )
416
- backlog -> complete (backlog , - EINPROGRESS );
416
+ crypto_request_complete (backlog , - EINPROGRESS );
417
417
418
418
if (arq ) {
419
419
ret = mxs_dcp_aes_block_crypt (arq );
420
- arq -> complete (arq , ret );
420
+ crypto_request_complete (arq , ret );
421
421
}
422
422
}
423
423
@@ -709,11 +709,11 @@ static int dcp_chan_thread_sha(void *data)
709
709
set_current_state (TASK_RUNNING );
710
710
711
711
if (backlog )
712
- backlog -> complete (backlog , - EINPROGRESS );
712
+ crypto_request_complete (backlog , - EINPROGRESS );
713
713
714
714
if (arq ) {
715
715
ret = dcp_sha_req_to_buf (arq );
716
- arq -> complete (arq , ret );
716
+ crypto_request_complete (arq , ret );
717
717
}
718
718
}
719
719
You can’t perform that action at this time.
0 commit comments