Message ID | 20200325114110.23491-3-broonie@kernel.org (mailing list archive) |
---|---|
State | Not Applicable |
Delegated to: | Herbert Xu |
Headers | show |
Series | arm64: Open code .arch_extension | expand |
diff --git a/arch/arm64/lib/crc32.S b/arch/arm64/lib/crc32.S index 243e107e9896..0fd9ef030ab1 100644 --- a/arch/arm64/lib/crc32.S +++ b/arch/arm64/lib/crc32.S @@ -9,7 +9,7 @@ #include <asm/alternative.h> #include <asm/assembler.h> - .cpu generic+crc +ARM64_EXTENSIONS(crc) .macro __crc32, c cmp x2, #16
Use the newly introduced ARM64_EXTENSIONS() macro to enable the CRC instructions. Signed-off-by: Mark Brown <broonie@kernel.org> --- arch/arm64/lib/crc32.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)