diff options
Diffstat (limited to 'include/linux/crypto.h')
| -rw-r--r-- | include/linux/crypto.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index b92eadf92d72..d45e949699ea 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
| @@ -710,9 +710,9 @@ static inline void ablkcipher_request_free(struct ablkcipher_request *req) | |||
| 710 | 710 | ||
| 711 | static inline void ablkcipher_request_set_callback( | 711 | static inline void ablkcipher_request_set_callback( |
| 712 | struct ablkcipher_request *req, | 712 | struct ablkcipher_request *req, |
| 713 | u32 flags, crypto_completion_t complete, void *data) | 713 | u32 flags, crypto_completion_t compl, void *data) |
| 714 | { | 714 | { |
| 715 | req->base.complete = complete; | 715 | req->base.complete = compl; |
| 716 | req->base.data = data; | 716 | req->base.data = data; |
| 717 | req->base.flags = flags; | 717 | req->base.flags = flags; |
| 718 | } | 718 | } |
| @@ -841,10 +841,10 @@ static inline void aead_request_free(struct aead_request *req) | |||
| 841 | 841 | ||
| 842 | static inline void aead_request_set_callback(struct aead_request *req, | 842 | static inline void aead_request_set_callback(struct aead_request *req, |
| 843 | u32 flags, | 843 | u32 flags, |
| 844 | crypto_completion_t complete, | 844 | crypto_completion_t compl, |
| 845 | void *data) | 845 | void *data) |
| 846 | { | 846 | { |
| 847 | req->base.complete = complete; | 847 | req->base.complete = compl; |
| 848 | req->base.data = data; | 848 | req->base.data = data; |
| 849 | req->base.flags = flags; | 849 | req->base.flags = flags; |
| 850 | } | 850 | } |
