Commit
13c03002c5df ("xen/arm64: head: Mark the end of subroutines
with ENDPROC") intended to mark all the subroutines with ENDPROC.
Unfortunately, I missed fail(), switch_ttbr() and init_uart(). Add
ENDPROC for the benefits of static analysis tools and the reader.
Signed-off-by: Julien Grall <jgrall@amazon.com>
Reviewed-by: Michal Orzel <michal.orzel@arm.com>
Reviewed-by: Bertrand Marquis <bertrand.marquis@arm.com>
fail: PRINT("- Boot failed -\r\n")
1: wfe
b 1b
+ENDPROC(fail)
GLOBAL(_end_boot)
isb
ret
+ENDPROC(switch_ttbr)
#ifdef CONFIG_EARLY_PRINTK
/*
#endif
PRINT("- UART enabled -\r\n")
ret
+ENDPROC(init_uart)
/* Print early debug messages.
* x0: Nul-terminated string to print.