diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-28 10:55:51 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-28 10:55:51 +0200 |
commit | d83d46fd7a2574e3d55293f98d9f9d50a782e198 (patch) | |
tree | 1c8ddfe21a70de7f5f5ecbad89cfd234adc629ff /Kernel/Interrupts | |
parent | 112b4de430edc2056234050df09eec72c520f8f9 (diff) | |
download | serenity-d83d46fd7a2574e3d55293f98d9f9d50a782e198.zip |
Kernel: Remove outdated FIXME in InterruptManagement::locate_apic_data
Diffstat (limited to 'Kernel/Interrupts')
-rw-r--r-- | Kernel/Interrupts/InterruptManagement.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
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++; } |