summaryrefslogtreecommitdiff
path: root/Kernel/Devices/FloppyDiskDevice.h
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2020-02-22 19:53:03 +0200
committerAndreas Kling <kling@serenityos.org>2020-02-24 11:27:03 +0100
commit740534cd67fa885164bdab7164f224522c10cfb2 (patch)
tree225e8c15f7d2236ffbd5c5cbc6c8cbf757d9b7b8 /Kernel/Devices/FloppyDiskDevice.h
parenta46120b4a81463a529c172d8a7523a0757543873 (diff)
downloadserenity-740534cd67fa885164bdab7164f224522c10cfb2.zip
Kernel: Update system components to use the new IRQHandler class
Diffstat (limited to 'Kernel/Devices/FloppyDiskDevice.h')
-rw-r--r--Kernel/Devices/FloppyDiskDevice.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/Devices/FloppyDiskDevice.h b/Kernel/Devices/FloppyDiskDevice.h
index 578a4f0a0e..607b9d474e 100644
--- a/Kernel/Devices/FloppyDiskDevice.h
+++ b/Kernel/Devices/FloppyDiskDevice.h
@@ -99,7 +99,7 @@
#include <AK/RefPtr.h>
#include <Kernel/Devices/BlockDevice.h>
-#include <Kernel/IRQHandler.h>
+#include <Kernel/Interrupts/IRQHandler.h>
#include <Kernel/Lock.h>
#include <Kernel/VM/PhysicalPage.h>
#include <LibBareMetal/Memory/PhysicalAddress.h>
@@ -177,7 +177,7 @@ protected:
private:
// ^IRQHandler
- void handle_irq();
+ virtual void handle_irq(RegisterState&) override;
// ^DiskDevice
virtual const char* class_name() const override;