From: Michal Simek Date: Mon, 22 Jun 2015 12:31:06 +0000 (+0200) Subject: zynqmp: Show EL level where U-Boot runs X-Git-Tag: KARO-TX6-2015-09-18~1059 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=5942a91aa49c17d47442d8295111563e653376e6 zynqmp: Show EL level where U-Boot runs Add one more print to make clear which EL level U-Boot runs. Signed-off-by: Michal Simek --- diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c index 88fe3e844f..0c9a814144 100644 --- a/board/xilinx/zynqmp/zynqmp.c +++ b/board/xilinx/zynqmp/zynqmp.c @@ -17,6 +17,8 @@ DECLARE_GLOBAL_DATA_PTR; int board_init(void) { + printf("EL Level:\tEL%d\n", current_el()); + return 0; }