aboutsummaryrefslogtreecommitdiff
path: root/bl2u
diff options
context:
space:
mode:
authorAntonio Nino Diaz <antonio.ninodiaz@arm.com>2017-02-16 16:17:19 +0000
committerAntonio Nino Diaz <antonio.ninodiaz@arm.com>2017-03-31 09:54:22 +0100
commit0b32628eddfef95b51909816f625e6f37cd21cb8 (patch)
tree7b543f2e311a9661dd8d4e4df927bc4386f79f0b /bl2u
parent801cf93c48585a83fda5d576b25c7b7f3cd59259 (diff)
downloadtrusted-firmware-a-0b32628eddfef95b51909816f625e6f37cd21cb8.tar.gz
Flush console where necessary
Call console_flush() before execution either terminates or leaves an exception level. Fixes: ARM-software/tf-issues#123 Change-Id: I64eeb92effb039f76937ce89f877b68e355588e3 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'bl2u')
-rw-r--r--bl2u/bl2u_main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/bl2u/bl2u_main.c b/bl2u/bl2u_main.c
index 515ddfb738..3ed5be73d4 100644
--- a/bl2u/bl2u_main.c
+++ b/bl2u/bl2u_main.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
@@ -34,6 +34,7 @@
#include <auth_mod.h>
#include <bl_common.h>
#include <bl1.h>
+#include <console.h>
#include <debug.h>
#include <platform.h>
#include <platform_def.h>
@@ -63,6 +64,8 @@ void bl2u_main(void)
/* Perform platform setup in BL2U after loading SCP_BL2U */
bl2u_platform_setup();
+ console_flush();
+
/*
* Indicate that BL2U is done and resume back to
* normal world via an SMC to BL1.