From 4fd5070f5dc69b9130ad0b547f33d80a5db74452 Mon Sep 17 00:00:00 2001 From: Yi Wang Date: Thu, 9 May 2024 20:42:19 +0800 Subject: [PATCH] ch-remote: fix help of remove-device remove-device can remove not only VFIO device but also pci device. No functional change. Signed-off-by: Yi Wang --- src/bin/ch-remote.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/ch-remote.rs b/src/bin/ch-remote.rs index 1d4e2a4d8..4d444d62b 100644 --- a/src/bin/ch-remote.rs +++ b/src/bin/ch-remote.rs @@ -987,7 +987,7 @@ fn main() { ) .subcommand( Command::new("remove-device") - .about("Remove VFIO device") + .about("Remove VFIO and PCI device") .arg(Arg::new("id").index(1).help("")), ) .subcommand(Command::new("info").about("Info on the VM"))