From 288cea917ee8b8158a1d3f46bac0afced059b2d7 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 11 May 2022 16:41:37 +0100 Subject: [PATCH] hypervisor: Make hypervisor module private All the required functionality is already exported from the hypervisor crate so for consistency make this module private. Signed-off-by: Rob Bradford --- hypervisor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypervisor/src/lib.rs b/hypervisor/src/lib.rs index 7ac0b7990..2e9043466 100644 --- a/hypervisor/src/lib.rs +++ b/hypervisor/src/lib.rs @@ -37,7 +37,7 @@ pub mod kvm; pub mod mshv; /// Hypevisor related module -pub mod hypervisor; +mod hypervisor; /// Vm related module mod vm;