Kernel/riscv64: Stub out InterruptManagement::find_controllers

We don't support any IRQControllers for RISC-V (like the PLIC) yet,
so just do nothing here for now.
This commit is contained in:
Sönke Holz 2024-01-18 17:33:28 +01:00 committed by Andrew Kaster
parent cec20908a5
commit 0a4ef6f3b7

View file

@ -34,7 +34,7 @@ void InterruptManagement::initialize()
void InterruptManagement::find_controllers()
{
TODO_RISCV64();
// TODO: Once device tree support is in place, find interrupt controllers using that.
}
u8 InterruptManagement::acquire_mapped_interrupt_number(u8 original_irq)