From ea08eeccae9297f7aabd2ef7f0c2517ac4549acc Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Tue, 20 Feb 2024 01:18:26 +0000 Subject: [PATCH] write in 30M --- kernel/arch/x86/crypto/sha1_avx2_x86_64_asm.S | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/kernel/arch/x86/crypto/sha1_avx2_x86_64_asm.S b/kernel/arch/x86/crypto/sha1_avx2_x86_64_asm.S index 7e578fa..6fa6226 100644 --- a/kernel/arch/x86/crypto/sha1_avx2_x86_64_asm.S +++ b/kernel/arch/x86/crypto/sha1_avx2_x86_64_asm.S @@ -634,7 +634,7 @@ * param: function's name */ .macro SHA1_VECTOR_ASM name - ENTRY(\name) + SYM_FUNC_START(\name) push %rbx push %r12 @@ -674,9 +674,9 @@ pop %r12 pop %rbx - ret + RET - ENDPROC(\name) + SYM_FUNC_END(\name) .endm .section .rodata -- Gitblit v1.6.2