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 <michal.simek@xilinx.com>
This commit is contained in:
Michal Simek 2015-06-22 14:31:06 +02:00
parent 6fe6f13509
commit a0736efbe2
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ DECLARE_GLOBAL_DATA_PTR;
int board_init(void)
{
printf("EL Level:\tEL%d\n", current_el());
return 0;
}