1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 07:47:35 +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/CircularQueue.h>
#include <Kernel/Devices/CharacterDevice.h>
#include <Kernel/IRQHandler.h>
#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/MousePacket.h>
namespace Kernel {
@ -49,8 +49,8 @@ public:
private:
// ^IRQHandler
virtual void handle_irq() override;
void handle_vmmouse_absolute_pointer();
virtual void handle_irq(RegisterState&) override;
// ^CharacterDevice
virtual const char* class_name() const override { return "PS2MouseDevice"; }