From b5ef704286742bba7ad153b916b94a00c4247014 Mon Sep 17 00:00:00 2001 From: German Date: Sat, 14 Dec 2024 11:21:50 +0300 Subject: [PATCH] acpi: Remove Clone Copy traits for MADT --- acpi/src/madt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acpi/src/madt.rs b/acpi/src/madt.rs index 8424e893..c89a6731 100644 --- a/acpi/src/madt.rs +++ b/acpi/src/madt.rs @@ -34,7 +34,7 @@ pub enum MadtError { /// * The Streamlined Advanced Programmable Interrupt Controller (SAPIC) model (for Itanium systems) /// * The Generic Interrupt Controller (GIC) model (for ARM systems) #[repr(C, packed)] -#[derive(Debug, Clone, Copy)] +#[derive(Debug)] pub struct Madt { pub header: SdtHeader, pub local_apic_address: u32,