Olivier Deprez | 764fd2e | 2020-07-29 15:14:09 +0200 | [diff] [blame^] | 1 | /* |
2 | * Copyright 2020 The Hafnium Authors. | ||||
3 | * | ||||
4 | * Use of this source code is governed by a BSD-style | ||||
5 | * license that can be found in the LICENSE file or at | ||||
6 | * https://opensource.org/licenses/BSD-3-Clause. | ||||
7 | */ | ||||
8 | |||||
9 | #include "hf/arch/vm.h" | ||||
10 | |||||
11 | ffa_partition_properties_t arch_vm_partition_properties(ffa_vm_id_t id) | ||||
12 | { | ||||
13 | (void)id; | ||||
14 | |||||
15 | return 0; | ||||
16 | } |