Mate Toth-Pal | 3956a8a | 2018-08-03 17:18:47 +0200 | [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 <stdint.h> | ||||
9 | |||||
10 | #include "tfm_ns_svc.h" | ||||
11 | |||||
12 | __attribute__ ((naked)) uint32_t tfm_nspm_register_client_id(void) | ||||
13 | { | ||||
14 | SVC(SVC_TFM_NSPM_REGISTER_CLIENT_ID); | ||||
15 | __ASM("BX LR"); | ||||
16 | } | ||||
17 | |||||
18 |