From d83d46fd7a2574e3d55293f98d9f9d50a782e198 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 28 May 2020 10:55:51 +0200 Subject: [PATCH] Kernel: Remove outdated FIXME in InterruptManagement::locate_apic_data --- Kernel/Interrupts/InterruptManagement.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Kernel/Interrupts/InterruptManagement.cpp b/Kernel/Interrupts/InterruptManagement.cpp index aca2e77878..ac39cc576e 100644 --- a/Kernel/Interrupts/InterruptManagement.cpp +++ b/Kernel/Interrupts/InterruptManagement.cpp @@ -215,7 +215,6 @@ void InterruptManagement::locate_apic_data() auto* ioapic_entry = (const ACPI::Structures::MADTEntries::IOAPIC*)madt_entry; dbg() << "IOAPIC found @ MADT entry " << entry_index << ", MMIO Registers @ " << PhysicalAddress(ioapic_entry->ioapic_address); m_interrupt_controllers.resize(1 + irq_controller_count); - // FIXME: Casting ioapic_entry->ioapic_address below looks suspicious! m_interrupt_controllers[irq_controller_count] = adopt(*new IOAPIC(PhysicalAddress(ioapic_entry->ioapic_address), ioapic_entry->gsi_base)); irq_controller_count++; }