mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-29 16:48:59 +00:00

Currently most of the architectural feature build flags are set to 2(FEATURE_STATE_CHECK) for fvp platform only. However other platforms still configure them by default to 0, which would lead to build failures in cases when compiler configured to build TF-A with zero optimization (CFLAGS='-O0'). This patch addresses such build issues and thereby resolves the failures seen under CI-l3 test_configurations. Change-Id: I45b82b821951bba6b9df08177f7d286e624a4239 Signed-off-by: Jayanth Dodderi Chidanand <jayanthdodderi.chidanand@arm.com>
18 lines
278 B
C
18 lines
278 B
C
/*
|
|
* Copyright (c) 2022-2023, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef BRBE_H
|
|
#define BRBE_H
|
|
|
|
#if ENABLE_BRBE_FOR_NS
|
|
void brbe_enable(void);
|
|
#else
|
|
void brbe_enable(void)
|
|
{
|
|
}
|
|
#endif /* ENABLE_BRBE_FOR_NS */
|
|
|
|
#endif /* BRBE_H */
|