aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJussi Kivilinna <jussi.kivilinna@iki.fi>2013-03-24 08:32:01 -0400
committerHerbert Xu <herbert@gondor.apana.org.au>2013-04-02 21:06:29 -0400
commiteca17269976fe82cdd713095473bee4842dbd41a (patch)
tree1f87b98611404d305757163792765dd494e1b12c /arch
parenteb16796302bad44fd346d4e0e15f8086132d1363 (diff)
crypto: x86/crc32-pclmul - assembly clean-ups: use ENTRY/ENDPROC
Signed-off-by: Jussi Kivilinna <jussi.kivilinna@iki.fi> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/crypto/crc32-pclmul_asm.S6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/crypto/crc32-pclmul_asm.S b/arch/x86/crypto/crc32-pclmul_asm.S
index c8335014a044..94c27df8a549 100644
--- a/arch/x86/crypto/crc32-pclmul_asm.S
+++ b/arch/x86/crypto/crc32-pclmul_asm.S
@@ -101,9 +101,8 @@
101 * uint crc32_pclmul_le_16(unsigned char const *buffer, 101 * uint crc32_pclmul_le_16(unsigned char const *buffer,
102 * size_t len, uint crc32) 102 * size_t len, uint crc32)
103 */ 103 */
104.globl crc32_pclmul_le_16 104
105.align 4, 0x90 105ENTRY(crc32_pclmul_le_16) /* buffer and buffer size are 16 bytes aligned */
106crc32_pclmul_le_16:/* buffer and buffer size are 16 bytes aligned */
107 movdqa (BUF), %xmm1 106 movdqa (BUF), %xmm1
108 movdqa 0x10(BUF), %xmm2 107 movdqa 0x10(BUF), %xmm2
109 movdqa 0x20(BUF), %xmm3 108 movdqa 0x20(BUF), %xmm3
@@ -244,3 +243,4 @@ fold_64:
244 pextrd $0x01, %xmm1, %eax 243 pextrd $0x01, %xmm1, %eax
245 244
246 ret 245 ret
246ENDPROC(crc32_pclmul_le_16)