1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 10:08:10 +00:00

Kernel/AHCI: Remove unnecessary AHCIPort class member

This commit is contained in:
Liav A 2021-11-13 14:00:45 +02:00 committed by Andreas Kling
parent 2e8330f78c
commit 557351724a
2 changed files with 0 additions and 2 deletions

View file

@ -89,7 +89,6 @@ void AHCIPort::handle_interrupt()
}
if (m_interrupt_status.is_set(AHCI::PortInterruptFlag::PRC)) {
clear_sata_error_register();
m_wait_connect_for_completion = true;
}
if (m_interrupt_status.is_set(AHCI::PortInterruptFlag::INF)) {
// We need to defer the reset, because we can receive interrupts when

View file

@ -107,7 +107,6 @@ private:
Mutex m_lock { "AHCIPort" };
mutable bool m_wait_for_completion { false };
bool m_wait_connect_for_completion { false };
NonnullRefPtrVector<Memory::PhysicalPage> m_dma_buffers;
NonnullRefPtrVector<Memory::PhysicalPage> m_command_table_pages;