diff options
author | Jean-Baptiste Boric <jblbeurope@gmail.com> | 2021-04-11 18:53:01 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-13 21:52:34 +0200 |
commit | a73bd0fff8224fda5c8b365928663414be70da45 (patch) | |
tree | e5524ce53d7e634bcb5c933bf59e27da32a95a86 /Kernel/Storage/AHCIController.h | |
parent | 9b75b1be5f6a8d72b846fe951a7378f4f16f25fc (diff) | |
download | serenity-a73bd0fff8224fda5c8b365928663414be70da45.zip |
Kernel: Remove type from StorageDevice class
Diffstat (limited to 'Kernel/Storage/AHCIController.h')
-rw-r--r-- | Kernel/Storage/AHCIController.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Storage/AHCIController.h b/Kernel/Storage/AHCIController.h index 9fbef60410..a59aab5e9d 100644 --- a/Kernel/Storage/AHCIController.h +++ b/Kernel/Storage/AHCIController.h @@ -48,7 +48,6 @@ public: UNMAP_AFTER_INIT static NonnullRefPtr<AHCIController> initialize(PCI::Address address); virtual ~AHCIController() override; - virtual Type type() const override { return Type::AHCI; } virtual RefPtr<StorageDevice> device(u32 index) const override; virtual bool reset() override; virtual bool shutdown() override; |