summaryrefslogtreecommitdiff
path: root/bl2u
diff options
context:
space:
mode:
authordavidcunado-arm <david.cunado@arm.com>2017-04-12 22:23:44 +0100
committerGitHub <noreply@github.com>2017-04-12 22:23:44 +0100
commitf07d3985b86acc6abc963924d82c9ba9a795fb22 (patch)
tree1c516dd4d561e9a71ea1fc8b9b6527b78cff0d21 /bl2u
parent45cd814bf71b311686db9fa65f78171ba5abf02f (diff)
parent1e09ff93444943edcebfb167202f37a5e7913d92 (diff)
Merge pull request #885 from antonio-nino-diaz-arm/an/console-flush
Implement console_flush()
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 515ddfb7..3ed5be73 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.