1 /* 2 * Arm SCP/MCP Software 3 * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. 4 * 5 * SPDX-License-Identifier: BSD-3-Clause 6 */ 7 8 #ifndef FMW_LOG_H 9 #define FMW_LOG_H 10 11 /* 12 * Disable log buffering by setting buffer size to 0. 13 */ 14 #define FMW_LOG_BUFFER_SIZE 0 15 16 #endif /* FMW_LOG_H */ 17