aboutsummaryrefslogtreecommitdiff
path: root/hypervisor/src/gunyah/aarch64.rs
diff options
context:
space:
mode:
Diffstat (limited to 'hypervisor/src/gunyah/aarch64.rs')
-rw-r--r--hypervisor/src/gunyah/aarch64.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/hypervisor/src/gunyah/aarch64.rs b/hypervisor/src/gunyah/aarch64.rs
index 3133d01ce..c40c36394 100644
--- a/hypervisor/src/gunyah/aarch64.rs
+++ b/hypervisor/src/gunyah/aarch64.rs
@@ -213,6 +213,14 @@ impl VcpuAArch64 for GunyahVcpu {
Err(Error::new(ENOTSUP))
}
+ fn set_vector_reg(&self, _reg_num: u8, _data: u128) -> Result<()> {
+ unimplemented!()
+ }
+
+ fn get_vector_reg(&self, _reg_num: u8) -> Result<u128> {
+ unimplemented!()
+ }
+
fn get_psci_version(&self) -> Result<PsciVersion> {
Ok(PSCI_0_2)
}