From: Julien Grall Date: Wed, 26 Jun 2019 11:29:54 +0000 (+0100) Subject: xen/arm32: head: Mark the end of subroutines with ENDPROC X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2ac705a59ef52d75dcecfecb2378dec946da45c4;p=people%2Fiwj%2Fxen.git xen/arm32: head: Mark the end of subroutines with ENDPROC putn() and puts() are two subroutines. Add ENDPROC for the benefits of static analysis tools and the reader. Signed-off-by: Julien Grall Acked-by: Stefano Stabellini --- diff --git a/xen/arch/arm/arm32/head.S b/xen/arch/arm/arm32/head.S index 99f4af18d8..8b4c8a4714 100644 --- a/xen/arch/arm/arm32/head.S +++ b/xen/arch/arm/arm32/head.S @@ -518,6 +518,7 @@ puts: moveq pc, lr early_uart_transmit r11, r1 b puts +ENDPROC(puts) /* * Print a 32-bit number in hex. Specific to the PL011 UART. @@ -537,6 +538,7 @@ putn: subs r3, r3, #1 bne 1b mov pc, lr +ENDPROC(putn) hex: .ascii "0123456789abcdef" .align 2