projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4941bfb
)
xen/arm64: head: Mark the end of subroutines with ENDPROC
author
Julien Grall
<julien.grall@arm.com>
Mon, 22 Jul 2019 21:39:25 +0000
(22:39 +0100)
committer
Stefano Stabellini
<sstabellini@kernel.org>
Mon, 29 Jul 2019 23:12:10 +0000
(16:12 -0700)
putn() and puts() are two subroutines. Add ENDPROC for the benefits of
static analysis tools and the reader.
Signed-off-by: Julien Grall <julien.grall@arm.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
xen/arch/arm/arm64/head.S
patch
|
blob
|
history
diff --git
a/xen/arch/arm/arm64/head.S
b/xen/arch/arm/arm64/head.S
index 08094a273ecb97deddc463761f1cbaf877694db2..f2d7445f6a40a48fabb77a50285978dd17ad9657 100644
(file)
--- a/
xen/arch/arm/arm64/head.S
+++ b/
xen/arch/arm/arm64/head.S
@@
-638,6
+638,7
@@
puts:
b puts
1:
ret
+ENDPROC(puts)
/* Print a 32-bit number in hex. Specific to the PL011 UART.
* x0: Number to print.
@@
-656,6
+657,7
@@
putn:
subs x3, x3, #1
b.ne 1b
ret
+ENDPROC(putn)
hex: .ascii "0123456789abcdef"
.align 2