From 407dd12dc58f5e4d3d5445c93b7e40b0f076d2df Mon Sep 17 00:00:00 2001 From: Tushar Khatri Date: Thu, 11 Jun 2026 15:39:51 +0000 Subject: [PATCH] vm-virtio: reevaluate #[allow] attributes Remove a stale #[allow(non_camel_case_types)] whose lint no longer fires; the enum variants are already CamelCase. Part of #8326. Signed-off-by: Tushar Khatri --- vm-virtio/src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/vm-virtio/src/lib.rs b/vm-virtio/src/lib.rs index 9fa574f80..302c0f599 100644 --- a/vm-virtio/src/lib.rs +++ b/vm-virtio/src/lib.rs @@ -23,7 +23,6 @@ pub const VIRTIO_MSI_NO_VECTOR: u16 = 0xffff; // Types taken from linux/virtio_ids.h #[derive(Copy, Clone, Debug)] -#[allow(non_camel_case_types)] #[repr(C)] pub enum VirtioDeviceType { Net = 1,