From 8ddff47f8a110d8be59a87e22f7b59f47985d71c Mon Sep 17 00:00:00 2001 From: Hsy-Intel Date: Mon, 26 Aug 2024 03:20:29 -0400 Subject: [PATCH] Ignore `MultiprocessorWakeup` when parse interrupt model --- acpi/src/madt.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/acpi/src/madt.rs b/acpi/src/madt.rs index f89ba17e..6a3f7b7e 100644 --- a/acpi/src/madt.rs +++ b/acpi/src/madt.rs @@ -282,6 +282,8 @@ impl Madt { local_apic_address = entry.local_apic_address; } + MadtEntry::MultiprocessorWakeup(_) => {} + _ => { return Err(AcpiError::InvalidMadt(MadtError::UnexpectedEntry)); }