diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2015-04-09 13:55:39 +0300 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2015-04-10 16:39:42 +0300 |
commit | 90451d6bdb787e1631c6ce4619221eb59562343c (patch) | |
tree | ea46e922a03c058935765ca88fac78dccb054f3d /arch/arm/crypto/sha1_neon_glue.c | |
parent | ca142584bc8ebc8e15b317680771ade58ca96315 (diff) | |
download | linux-90451d6bdb787e1631c6ce4619221eb59562343c.tar.xz |
crypto: arm/sha1 - move SHA-1 ARM asm implementation to base layer
This removes all the boilerplate from the existing implementation,
and replaces it with calls into the base layer.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch/arm/crypto/sha1_neon_glue.c')
-rw-r--r-- | arch/arm/crypto/sha1_neon_glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/crypto/sha1_neon_glue.c b/arch/arm/crypto/sha1_neon_glue.c index 0b0083757d47..5d9a1b4aac73 100644 --- a/arch/arm/crypto/sha1_neon_glue.c +++ b/arch/arm/crypto/sha1_neon_glue.c @@ -28,8 +28,8 @@ #include <asm/byteorder.h> #include <asm/neon.h> #include <asm/simd.h> -#include <asm/crypto/sha1.h> +#include "sha1.h" asmlinkage void sha1_transform_neon(void *state_h, const char *data, unsigned int rounds); |