Skip to content

Commit 4576905

Browse files
hcahcaVasily Gorbik
authored andcommitted
s390/lib: use SYM* macros instead of ENTRY(), etc.
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>
1 parent e48b685 commit 4576905

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

arch/s390/lib/mem.S

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ EXPORT_SYMBOL(memcpy)
158158
* void *__memset64(uint64_t *s, uint64_t v, size_t count)
159159
*/
160160
.macro __MEMSET bits,bytes,insn
161-
ENTRY(__memset\bits)
161+
SYM_FUNC_START(__memset\bits)
162162
ltgr %r4,%r4
163163
jz .L__memset_exit\bits
164164
cghi %r4,\bytes
@@ -184,7 +184,7 @@ ENTRY(__memset\bits)
184184
BR_EX %r14
185185
.L__memset_mvc\bits:
186186
mvc \bytes(1,%r1),0(%r1)
187-
ENDPROC(__memset\bits)
187+
SYM_FUNC_END(__memset\bits)
188188
.endm
189189

190190
__MEMSET 16,2,sth

0 commit comments

Comments
 (0)