From 313d980538a4a61a77af2d131c29baa8077a16ed Mon Sep 17 00:00:00 2001 From: Anatol Belski Date: Sat, 7 Mar 2026 11:25:31 +0100 Subject: [PATCH] vm-virtio: Remove stale comment from watchdog device ID Device ID 35 for virtio watchdog was officially allocated and merged into the Linux kernel UAPI headers as VIRTIO_ID_WATCHDOG in kernel 5.15. The virtio specification v1.2 also lists device ID 35 for the watchdog device type. Leaving the comment is therefore misleading. Signed-off-by: Anatol Belski --- vm-virtio/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm-virtio/src/lib.rs b/vm-virtio/src/lib.rs index b7f537070..c560e5c86 100644 --- a/vm-virtio/src/lib.rs +++ b/vm-virtio/src/lib.rs @@ -39,7 +39,7 @@ pub enum VirtioDeviceType { Mem = 24, Fs = 26, Pmem = 27, - Watchdog = 35, // Temporary until official number allocated + Watchdog = 35, Unknown = 0xFF, }