Skip to content

Commit 05d0935

Browse files
hcahcaVasily Gorbik
authored andcommitted
s390/head64: 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 a89d60f commit 05d0935

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

arch/s390/kernel/head64.S

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <asm/ptrace.h>
1717

1818
__HEAD
19-
ENTRY(startup_continue)
19+
SYM_CODE_START(startup_continue)
2020
larl %r1,tod_clock_base
2121
mvc 0(16,%r1),__LC_BOOT_CLOCK
2222
#
@@ -33,8 +33,8 @@ ENTRY(startup_continue)
3333
# We returned from start_kernel ?!? PANIK
3434
#
3535
basr %r13,0
36-
lpswe .Ldw-.(%r13) # load disabled wait psw
36+
lpswe dw_psw-.(%r13) # load disabled wait psw
37+
SYM_CODE_END(startup_continue)
3738

3839
.align 16
39-
.LPG1:
40-
.Ldw: .quad 0x0002000180000000,0x0000000000000000
40+
SYM_DATA_LOCAL(dw_psw, .quad 0x0002000180000000,0x0000000000000000)

0 commit comments

Comments
 (0)