From: Herbert Xu Date: Fri, 19 May 2023 12:41:55 +0000 (+0800) Subject: crypto: arm64/sha256-glue - Include module.h X-Git-Tag: v6.5-rc1~108^2~62 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f573db7aa528f11820dcc811bc7791b231d22b1c;p=linux-block.git crypto: arm64/sha256-glue - Include module.h Include module.h in arch/arm64/crypto/sha256-glue.c as it uses various macros (such as MODULE_AUTHOR) that are defined there. Also fix the ordering of types.h. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202305191953.PIB1w80W-lkp@intel.com/ Signed-off-by: Herbert Xu --- diff --git a/arch/arm64/crypto/sha256-glue.c b/arch/arm64/crypto/sha256-glue.c index 9462f6088b3f..9b5c86e07a9a 100644 --- a/arch/arm64/crypto/sha256-glue.c +++ b/arch/arm64/crypto/sha256-glue.c @@ -12,8 +12,9 @@ #include #include #include -#include +#include #include +#include MODULE_DESCRIPTION("SHA-224/SHA-256 secure hash for arm64"); MODULE_AUTHOR("Andy Polyakov ");