Skip to content

Commit 26d1429

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

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

arch/s390/kernel/reipl.S

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# r2 = Function to be called after store status
2020
# r3 = Parameter for function
2121
#
22-
ENTRY(store_status)
22+
SYM_CODE_START(store_status)
2323
/* Save register one and load save area base */
2424
stg %r1,__LC_SAVE_AREA_RESTART
2525
/* General purpose registers */
@@ -61,7 +61,7 @@ ENTRY(store_status)
6161
stpx 0(%r1)
6262
/* Clock comparator - seven bytes */
6363
lghi %r1,__LC_CLOCK_COMP_SAVE_AREA
64-
larl %r4,.Lclkcmp
64+
larl %r4,clkcmp
6565
stckc 0(%r4)
6666
mvc 1(7,%r1),1(%r4)
6767
/* Program status word */
@@ -73,9 +73,9 @@ ENTRY(store_status)
7373
lgr %r9,%r2
7474
lgr %r2,%r3
7575
BR_EX %r9
76-
ENDPROC(store_status)
76+
SYM_CODE_END(store_status)
7777

7878
.section .bss
79-
.align 8
80-
.Lclkcmp: .quad 0x0000000000000000
79+
.balign 8
80+
SYM_DATA_LOCAL(clkcmp, .quad 0x0000000000000000)
8181
.previous

0 commit comments

Comments
 (0)