Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eca17269 authored by Jussi Kivilinna's avatar Jussi Kivilinna Committed by Herbert Xu
Browse files

crypto: x86/crc32-pclmul - assembly clean-ups: use ENTRY/ENDPROC

parent eb167963
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -101,9 +101,8 @@
 *      uint crc32_pclmul_le_16(unsigned char const *buffer,
 *	                     size_t len, uint crc32)
 */
.globl crc32_pclmul_le_16
.align 4, 0x90
crc32_pclmul_le_16:/* buffer and buffer size are 16 bytes aligned */

ENTRY(crc32_pclmul_le_16) /* buffer and buffer size are 16 bytes aligned */
	movdqa  (BUF), %xmm1
	movdqa  0x10(BUF), %xmm2
	movdqa  0x20(BUF), %xmm3
@@ -244,3 +243,4 @@ fold_64:
	pextrd  $0x01, %xmm1, %eax

	ret
ENDPROC(crc32_pclmul_le_16)