Remove dead_code lint allow for ACPI

This commit is contained in:
bjorn3
2026-04-04 13:50:48 +02:00
parent 62f220b1b9
commit f339467372
2 changed files with 1 additions and 1 deletions
+1
View File
@@ -148,6 +148,7 @@ pub struct MadtGicd {
/// MADT Entries
#[derive(Debug)]
#[allow(dead_code)]
pub enum MadtEntry {
LocalApic(&'static MadtLocalApic),
InvalidLocalApic(usize),
-1
View File
@@ -46,7 +46,6 @@ const PHYS_OFFSET: usize = <arch::CurrentRmmArch as ::rmm::Arch>::PHYS_OFFSET;
mod allocator;
/// ACPI table parsing
#[allow(dead_code)] // TODO
mod acpi;
#[cfg(dtb)]