arch, hypervisor, vmm: KvmHyperVisor -> KvmHypervisor

"Hypervisor" is one word. The "v" shouldn't be capitalised.

No functional change.

Signed-off-by: Wei Liu <liuwe@microsoft.com>
This commit is contained in:
Wei Liu
2020-06-24 12:06:29 +00:00
committed by Sebastien Boeuf
parent b00171e17d
commit b27439b6ed
5 changed files with 21 additions and 21 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ mod tests {
#[test]
fn test_setlint() {
let kvm = hypervisor::kvm::KvmHyperVisor::new().unwrap();
let kvm = hypervisor::kvm::KvmHypervisor::new().unwrap();
let hv: Arc<dyn hypervisor::Hypervisor> = Arc::new(kvm);
let vm = hv.create_vm().expect("new VM fd creation failed");
assert!(hv.check_capability(hypervisor::kvm::Cap::Irqchip));