From d1214acf2a22bf6b6cd1baf32fb29b9c48e80136 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 25 Sep 2024 18:52:18 +0200 Subject: [PATCH] vmm: remove unused DeviceManager::console method Fixes: 38a1b457 ("vmm: use the SIGWINCH listener for TTYs too") Signed-off-by: Alyssa Ross --- vmm/src/device_manager.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vmm/src/device_manager.rs b/vmm/src/device_manager.rs index 1b097159f..06a5a372d 100644 --- a/vmm/src/device_manager.rs +++ b/vmm/src/device_manager.rs @@ -3944,10 +3944,6 @@ impl DeviceManager { &self.pci_segments } - pub fn console(&self) -> &Arc { - &self.console - } - #[cfg(target_arch = "aarch64")] pub fn cmdline_additions(&self) -> &[String] { self.cmdline_additions.as_slice()