diff options
author | Mark Brown <broonie@kernel.org> | 2020-04-14 19:20:08 +0100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2020-04-24 17:42:16 +1000 |
commit | 3ca73b70a3a98da739f4ebcff381d13bb7cd339f (patch) | |
tree | be8d2fb60d5b8590aead721df2c9b9dfc7b19318 /arch | |
parent | 3adbbd2295ad138ab95404d0ffc6bfc1b8f9f1e4 (diff) |
crypto: arm64 - Consistently enable extension
Currently most of the crypto files enable the crypto extension using the
.arch directive but crct10dif-ce-core.S uses .cpu instead. Move that over
to .arch for consistency.
Signed-off-by: Mark Brown <broonie@kernel.org>
Acked-by: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm64/crypto/crct10dif-ce-core.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/crypto/crct10dif-ce-core.S b/arch/arm64/crypto/crct10dif-ce-core.S index 5a95c2628fbf..111d9c9abddd 100644 --- a/arch/arm64/crypto/crct10dif-ce-core.S +++ b/arch/arm64/crypto/crct10dif-ce-core.S @@ -66,7 +66,7 @@ #include <asm/assembler.h> .text - .cpu generic+crypto + .arch armv8-a+crypto init_crc .req w19 buf .req x20 |