summaryrefslogtreecommitdiff
path: root/Kernel/Storage
diff options
context:
space:
mode:
authorIdan Horowitz <idan.horowitz@gmail.com>2022-01-28 16:37:50 +0200
committerIdan Horowitz <idan.horowitz@gmail.com>2022-01-28 19:05:52 +0200
commite1ad9326df316949ded81dfba4c68bc4eea608c8 (patch)
tree1feff216146b20fadb20638db94200db5f8e9597 /Kernel/Storage
parent5146315a150b9c71382eadc0e229ee30f38305b5 (diff)
downloadserenity-e1ad9326df316949ded81dfba4c68bc4eea608c8.zip
Kernel: Remove unimplemented AHCIPort::is_hot_pluggable declaration
Diffstat (limited to 'Kernel/Storage')
-rw-r--r--Kernel/Storage/ATA/AHCIPort.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Storage/ATA/AHCIPort.h b/Kernel/Storage/ATA/AHCIPort.h
index 5d000cc462..9e11051d24 100644
--- a/Kernel/Storage/ATA/AHCIPort.h
+++ b/Kernel/Storage/ATA/AHCIPort.h
@@ -42,7 +42,6 @@ public:
u32 port_index() const { return m_port_index; }
u32 representative_port_index() const { return port_index() + 1; }
bool is_operable() const;
- bool is_hot_pluggable() const;
bool is_atapi_attached() const { return m_port_registers.sig == (u32)AHCI::DeviceSignature::ATAPI; };
RefPtr<StorageDevice> connected_device() const { return m_connected_device; }