bsp: r5: removes Init_Uart call from boot flow

This patch modifies xil-crt0.S to remove Init_Uart API call
as fsbl is initializing the UART

Signed-off-by: Kinjal Pravinbhai Patel <patelki@xilinx.com>
This commit is contained in:
Kinjal Pravinbhai Patel 2015-06-10 17:27:26 +05:30 committed by Nava kishore Manne
parent 46c5e55478
commit 3459d888f6

View file

@ -101,13 +101,6 @@ _startup:
/* set stack pointer */
ldr r13,.Lstack /* stack address */
/*
* Uart is not initialized for OpenAMP applications
* as master processor would be controlling and using the Uart
*/
#if USEAMP != 1
bl Init_Uart /* Initialize UART */
#endif
bl main /* Jump to main C code */
bl _exit