sw_apps:zynqmp_fsbl: Removed UART initialization workaround in FSBL

UART initialization is now done correctly in psu_init file for emulation platforms.
Hence removing the workaround. Also, this workaround should not be present for
Silicon.

Signed-off-by: Sarat Chand Savitala <saratcha@xilinx.com>
Acked-by: Krishna Chaitanya Patakamuri <kpataka@xilinx.com>
This commit is contained in:
Sarat Chand Savitala 2015-09-14 22:12:50 +05:30 committed by Nava kishore Manne
parent be737a95f5
commit 5ed1c08082

View file

@ -77,9 +77,6 @@ static u32 XFsbl_SecondaryBootDeviceInit(XFsblPs * FsblInstancePtr);
/* Functions from xfsbl_misc.c */
int psu_init();
/* Functions from uart.c of BSP */
void Init_Uart(void);
/**
* Functions from xfsbl_misc.c
*/
@ -136,11 +133,6 @@ u32 XFsbl_Initialize(XFsblPs * FsblInstancePtr)
goto END;
}
#ifdef STDOUT_BASEADDRESS
Init_Uart();
#endif
/**
* Print the FSBL banner
*/