Message ID | 46a016a18a0e7440ff74c6f4e8d04cf54baad659.1744455146.git.herbert@gondor.apana.org.au |
---|---|
State | New |
Headers | show |
Series | [1/8] crypto: hash - Add HASH_REQUEST_ON_STACK | expand |
diff --git a/arch/arm64/crypto/sha512-glue.c b/arch/arm64/crypto/sha512-glue.c index 62f129dea83d..f789deabefc0 100644 --- a/arch/arm64/crypto/sha512-glue.c +++ b/arch/arm64/crypto/sha512-glue.c @@ -6,11 +6,10 @@ */ #include <crypto/internal/hash.h> -#include <linux/types.h> -#include <linux/string.h> +#include <linux/kernel.h> +#include <linux/module.h> #include <crypto/sha2.h> #include <crypto/sha512_base.h> -#include <asm/neon.h> MODULE_DESCRIPTION("SHA-384/SHA-512 secure hash for arm64"); MODULE_AUTHOR("Andy Polyakov <appro@openssl.org>");
Instead of relying on linux/module.h being included through the header file sha512_base.h, include it directly. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> --- arch/arm64/crypto/sha512-glue.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)