diff options
author | 2025-04-27 08:42:51 +0800 | |
---|---|---|
committer | 2025-04-28 19:45:26 +0800 | |
commit | 1dea68318aad0899011a49748634aff54ddc327a (patch) | |
tree | fc8c625a97b52ec0f304eb3850c8acf158d7d2e0 /drivers/crypto | |
parent | crypto: octeontx2 - Simplify multiple return statements (diff) | |
download | linux-rng-1dea68318aad0899011a49748634aff54ddc327a.tar.xz linux-rng-1dea68318aad0899011a49748634aff54ddc327a.zip |
crypto: ccp - Include crypto/utils.h for crypto_memneq
Include crypto/utils.h to get crypto_memneq rather than relying
on random inclusions.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/ccp/ccp-ops.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/crypto/ccp/ccp-ops.c b/drivers/crypto/ccp/ccp-ops.c index cb8e99936abb..109b5aef4034 100644 --- a/drivers/crypto/ccp/ccp-ops.c +++ b/drivers/crypto/ccp/ccp-ops.c @@ -8,13 +8,14 @@ * Author: Gary R Hook <gary.hook@amd.com> */ -#include <linux/dma-mapping.h> -#include <linux/module.h> -#include <linux/kernel.h> -#include <linux/interrupt.h> -#include <crypto/scatterwalk.h> #include <crypto/des.h> +#include <crypto/scatterwalk.h> +#include <crypto/utils.h> #include <linux/ccp.h> +#include <linux/dma-mapping.h> +#include <linux/errno.h> +#include <linux/kernel.h> +#include <linux/module.h> #include "ccp-dev.h" |