s390/lib: use SYM* macros instead of ENTRY(), etc.
authorHeiko Carstens <hca@linux.ibm.com>
Mon, 17 Apr 2023 12:45:04 +0000 (14:45 +0200)
committerVasily Gorbik <gor@linux.ibm.com>
Wed, 19 Apr 2023 15:24:16 +0000 (17:24 +0200)
Consistently use the SYM* family of macros instead of the
deprecated ENTRY(), ENDPROC(), etc. family of macros.

Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Vasily Gorbik <gor@linux.ibm.com>
arch/s390/lib/mem.S

index 2e0480424f40ad3113e0404db06ce510e00fd7d3..5a9a55de2e109d0283b1307e0a44f6a2aa09f055 100644 (file)
@@ -158,7 +158,7 @@ EXPORT_SYMBOL(memcpy)
  * void *__memset64(uint64_t *s, uint64_t v, size_t count)
  */
 .macro __MEMSET bits,bytes,insn
-ENTRY(__memset\bits)
+SYM_FUNC_START(__memset\bits)
        ltgr    %r4,%r4
        jz      .L__memset_exit\bits
        cghi    %r4,\bytes
@@ -184,7 +184,7 @@ ENTRY(__memset\bits)
        BR_EX   %r14
 .L__memset_mvc\bits:
        mvc     \bytes(1,%r1),0(%r1)
-ENDPROC(__memset\bits)
+SYM_FUNC_END(__memset\bits)
 .endm
 
 __MEMSET 16,2,sth