Commit 26d14299 authored by Heiko Carstens's avatar Heiko Carstens Committed by Vasily Gorbik
Browse files

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: default avatarHeiko Carstens <hca@linux.ibm.com>
Signed-off-by: default avatarVasily Gorbik <gor@linux.ibm.com>
parent 05d0935d
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
# r2 = Function to be called after store status
# r3 = Parameter for function
#
ENTRY(store_status)
SYM_CODE_START(store_status)
	/* Save register one and load save area base */
	stg	%r1,__LC_SAVE_AREA_RESTART
	/* General purpose registers */
@@ -61,7 +61,7 @@ ENTRY(store_status)
	stpx	0(%r1)
	/* Clock comparator - seven bytes */
	lghi	%r1,__LC_CLOCK_COMP_SAVE_AREA
	larl	%r4,.Lclkcmp
	larl	%r4,clkcmp
	stckc	0(%r4)
	mvc	1(7,%r1),1(%r4)
	/* Program status word */
@@ -73,9 +73,9 @@ ENTRY(store_status)
	lgr	%r9,%r2
	lgr	%r2,%r3
	BR_EX	%r9
ENDPROC(store_status)
SYM_CODE_END(store_status)

	.section .bss
	.align	8
.Lclkcmp:	.quad	0x0000000000000000
	.balign	8
SYM_DATA_LOCAL(clkcmp,	.quad 0x0000000000000000)
	.previous