Commit 16aeed07 authored by Herbert Xu's avatar Herbert Xu
Browse files

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: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent c7e68043
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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>");