From: Herbert Xu Date: Sat, 12 Apr 2025 10:57:24 +0000 (+0800) Subject: crypto: arm64/sha512 - Fix header inclusions X-Git-Tag: block-6.16-20250606~34^2~260 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=16aeed07c0debede447ceb9cae6ad047ab654ccf;p=linux-block.git crypto: arm64/sha512 - Fix header inclusions Instead of relying on linux/module.h being included through the header file sha512_base.h, include it directly. Signed-off-by: Herbert Xu --- 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 -#include -#include +#include +#include #include #include -#include MODULE_DESCRIPTION("SHA-384/SHA-512 secure hash for arm64"); MODULE_AUTHOR("Andy Polyakov ");