diff options
author | Heiko Carstens <hca@linux.ibm.com> | 2023-04-17 14:45:11 +0200 |
---|---|---|
committer | Vasily Gorbik <gor@linux.ibm.com> | 2023-04-19 17:24:17 +0200 |
commit | 05d0935d12966686eb1d780e3f929727e9fa500d (patch) | |
tree | fa3c789ec24d98bf281e487a2a8e5efea9d3f598 /arch/s390 | |
parent | s390/earlypgm: use SYM* macros instead of ENTRY(), etc. (diff) | |
download | linux-05d0935d12966686eb1d780e3f929727e9fa500d.tar.xz linux-05d0935d12966686eb1d780e3f929727e9fa500d.zip |
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>
Diffstat (limited to 'arch/s390')
-rw-r--r-- | arch/s390/kernel/head64.S | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/s390/kernel/head64.S b/arch/s390/kernel/head64.S index f67982f562db..df77ba102096 100644 --- a/arch/s390/kernel/head64.S +++ b/arch/s390/kernel/head64.S @@ -16,7 +16,7 @@ #include <asm/ptrace.h> __HEAD -ENTRY(startup_continue) +SYM_CODE_START(startup_continue) larl %r1,tod_clock_base mvc 0(16,%r1),__LC_BOOT_CLOCK # @@ -33,8 +33,8 @@ ENTRY(startup_continue) # We returned from start_kernel ?!? PANIK # basr %r13,0 - lpswe .Ldw-.(%r13) # load disabled wait psw + lpswe dw_psw-.(%r13) # load disabled wait psw +SYM_CODE_END(startup_continue) .align 16 -.LPG1: -.Ldw: .quad 0x0002000180000000,0x0000000000000000 +SYM_DATA_LOCAL(dw_psw, .quad 0x0002000180000000,0x0000000000000000) |