From: Herbert Xu Date: Sat, 12 Apr 2025 10:57:24 +0000 (+0800) Subject: crypto: arm64/sha512 - Fix header inclusions X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=16aeed07c0debede447ceb9cae6ad047ab654ccf;p=users%2Fjedix%2Flinux-maple.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 62f129dea83d8..f789deabefc0a 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 ");