1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:17:46 +00:00

Kernel: Update system components to use the new IRQHandler class

This commit is contained in:
Liav A 2020-02-22 19:53:03 +02:00 committed by Andreas Kling
parent a46120b4a8
commit 740534cd67
9 changed files with 13 additions and 14 deletions

View file

@ -28,7 +28,7 @@
#include <AK/RefPtr.h>
#include <Kernel/ACPI/ACPIStaticParser.h>
#include <Kernel/IRQHandler.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/Lock.h>
#include <Kernel/VM/PhysicalPage.h>
#include <LibBareMetal/Memory/PhysicalAddress.h>
@ -54,7 +54,7 @@ protected:
private:
void build_namespace();
// ^IRQHandler
virtual void handle_irq() override;
virtual void handle_irq(RegisterState&) override;
OwnPtr<Region> m_acpi_namespace;
};