We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a712bff commit 47c3228Copy full SHA for 47c3228
drivers/crypto/inside-secure/safexcel.c
@@ -850,7 +850,7 @@ void safexcel_dequeue(struct safexcel_crypto_priv *priv, int ring)
850
goto request_failed;
851
852
if (backlog)
853
- backlog->complete(backlog, -EINPROGRESS);
+ crypto_request_complete(backlog, -EINPROGRESS);
854
855
/* In case the send() helper did not issue any command to push
856
* to the engine because the input data was cached, continue to
@@ -1039,7 +1039,7 @@ static inline void safexcel_handle_result_descriptor(struct safexcel_crypto_priv
1039
1040
if (should_complete) {
1041
local_bh_disable();
1042
- req->complete(req, ret);
+ crypto_request_complete(req, ret);
1043
local_bh_enable();
1044
}
1045
0 commit comments