Marc Moreno Berengue | 8e0fa7a | 2018-10-04 18:25:13 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2018, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #ifndef __TFM_PLATFORM_VENEERS_H__ |
| 9 | #define __TFM_PLATFORM_VENEERS_H__ |
| 10 | |
| 11 | #ifdef __cplusplus |
| 12 | extern "C" { |
| 13 | #endif |
| 14 | |
| 15 | #include "tfm_platform_api.h" |
| 16 | |
| 17 | /*! |
| 18 | * \brief Resets the system. |
| 19 | * |
| 20 | * \return Returns values as specified by the \ref tfm_platform_err_t |
| 21 | */ |
| 22 | enum tfm_platform_err_t tfm_platform_veneer_system_reset(void); |
| 23 | |
| 24 | #ifdef __cplusplus |
| 25 | } |
| 26 | #endif |
| 27 | |
| 28 | #endif /* __TFM_PLATFORM_VENEERS_H__ */ |