diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2013-01-20 18:05:02 +1100 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2013-01-20 18:05:02 +1100 |
commit | 7983627657db5e37594af5c28cdb623855eb554f (patch) | |
tree | f21736725e5accd45655b14146cf666d49a6e859 | |
parent | d3f5188dfea70e7ea6570bd4bc9d6d7dbd431e39 (diff) | |
download | op-kernel-dev-7983627657db5e37594af5c28cdb623855eb554f.zip op-kernel-dev-7983627657db5e37594af5c28cdb623855eb554f.tar.gz |
crypto: crc32-pclmul - Kill warning on x86-32
This patch removes a gratuitous warning on x86-32:
arch/x86/crypto/crc32-pclmul_asm.S:87:2: warning: #warning Using 32bit code support [-Wcpp]
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
-rw-r--r-- | arch/x86/crypto/crc32-pclmul_asm.S | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/x86/crypto/crc32-pclmul_asm.S b/arch/x86/crypto/crc32-pclmul_asm.S index 65ea6a6..c8335014 100644 --- a/arch/x86/crypto/crc32-pclmul_asm.S +++ b/arch/x86/crypto/crc32-pclmul_asm.S @@ -84,7 +84,6 @@ #define LEN %rsi #define CRC %edx #else -#warning Using 32bit code support #define BUF %eax #define LEN %edx #define CRC %ecx |