diff options
Diffstat (limited to 'include/crypto/internal/skcipher.h')
| -rw-r--r-- | include/crypto/internal/skcipher.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/crypto/internal/skcipher.h b/include/crypto/internal/skcipher.h index 2ba42cd7d6a..3a748a6bf77 100644 --- a/include/crypto/internal/skcipher.h +++ b/include/crypto/internal/skcipher.h @@ -79,8 +79,8 @@ static inline int skcipher_enqueue_givcrypt(  static inline struct skcipher_givcrypt_request *skcipher_dequeue_givcrypt(  	struct crypto_queue *queue)  { -	return container_of(ablkcipher_dequeue_request(queue), -			    struct skcipher_givcrypt_request, creq); +	return __crypto_dequeue_request( +		queue, offsetof(struct skcipher_givcrypt_request, creq.base));  }  static inline void *skcipher_givcrypt_reqctx(  |