summaryrefslogtreecommitdiff
path: root/Kernel/Devices/PATAChannel.h
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Devices/PATAChannel.h')
-rw-r--r--Kernel/Devices/PATAChannel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Devices/PATAChannel.h b/Kernel/Devices/PATAChannel.h
index 091e96b9e9..b7aabb808b 100644
--- a/Kernel/Devices/PATAChannel.h
+++ b/Kernel/Devices/PATAChannel.h
@@ -72,6 +72,8 @@ public:
RefPtr<PATADiskDevice> master_device() { return m_master; };
RefPtr<PATADiskDevice> slave_device() { return m_slave; };
+ virtual const char* purpose() const override { return "PATA Channel"; }
+
private:
//^ IRQHandler
virtual void handle_irq(RegisterState&) override;