1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 03:37:45 +00:00

Kernel: Remove unimplemented AHCIPort::is_hot_pluggable declaration

This commit is contained in:
Idan Horowitz 2022-01-28 16:37:50 +02:00
parent 5146315a15
commit e1ad9326df

View file

@ -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; }