summary refs log tree commit diff
path: root/hypervisor/src/aarch64.rs
diff options
context:
space:
mode:
Diffstat (limited to 'hypervisor/src/aarch64.rs')
-rw-r--r--hypervisor/src/aarch64.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervisor/src/aarch64.rs b/hypervisor/src/aarch64.rs
index dc06d8d..875941b 100644
--- a/hypervisor/src/aarch64.rs
+++ b/hypervisor/src/aarch64.rs
@@ -7,7 +7,7 @@ use sys_util::Result;
 
 /// A wrapper for using a VM on aarch64 and getting/setting its state.
 pub trait VmAArch64: Vm {
-    type Vcpu: VcpuArm;
+    type Vcpu: VcpuAArch64;
 
     /// Create a Vcpu with the specified Vcpu ID.
     fn create_vcpu(&self, id: usize) -> Result<Self::Vcpu>;