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 | #include "tfm_platform_api.h" | ||||
9 | #include "tfm_platform_veneers.h" | ||||
10 | #include "tfm_ns_lock.h" | ||||
11 | |||||
12 | enum tfm_platform_err_t tfm_platform_system_reset(void) | ||||
13 | { | ||||
14 | return tfm_ns_lock_dispatch((veneer_fn)tfm_platform_veneer_system_reset, | ||||
15 | 0, | ||||
16 | 0, | ||||
17 | 0, | ||||
18 | 0); | ||||
19 | } |