diff --git a/Kernel/Storage/ATA/AHCIPortHandler.h b/Kernel/Storage/ATA/AHCIPortHandler.h index c95047fb71..63251caba9 100644 --- a/Kernel/Storage/ATA/AHCIPortHandler.h +++ b/Kernel/Storage/ATA/AHCIPortHandler.h @@ -34,7 +34,6 @@ public: static ErrorOr> create(AHCIController&, u8 irq, AHCI::MaskedBitField taken_ports); virtual ~AHCIPortHandler() override; - RefPtr device_at_port(size_t port_index) const; virtual StringView purpose() const override { return "SATA Port Handler"sv; } AHCI::HBADefinedCapabilities hba_capabilities() const; @@ -58,9 +57,6 @@ private: AHCI::MaskedBitField create_pending_ports_interrupts_bitfield() const; - void start_request(AsyncBlockDeviceRequest&, bool, bool, u16); - void complete_current_request(AsyncDeviceRequest::RequestResult); - void enumerate_ports(Function callback) const; RefPtr port_at_index(u32 port_index) const;