1 /*
2  * Copyright (c) 2020, Arm Limited. All rights reserved.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 
8 #include "tfm_hal_spm_logdev.h"
9 #include "uart_stdout.h"
10 
tfm_hal_output_spm_log(const char * str,uint32_t len)11 int32_t tfm_hal_output_spm_log(const char *str, uint32_t len)
12 {
13     /* Peripheral based log function call the stdio_output_string directly */
14     return stdio_output_string((const unsigned char *)str, len);
15 }
16