Merge "refactor(bl32): flush before console switch state" into integration

This commit is contained in:
Olivier Deprez 2025-02-04 11:34:06 +01:00 committed by TrustedFirmware Code Review
commit a0883e9e74
2 changed files with 2 additions and 6 deletions

View file

@ -213,6 +213,7 @@ void sp_min_main(void)
sp_min_plat_runtime_setup();
console_flush();
console_switch_state(CONSOLE_FLAG_RUNTIME);
}
/******************************************************************************

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2018-2024, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@ -17,9 +17,4 @@
void sp_min_plat_runtime_setup(void)
{
/*
* Finish the use of console driver in SP_MIN so that any runtime logs
* from SP_MIN will be suppressed.
*/
console_switch_state(CONSOLE_FLAG_RUNTIME);
}