mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:47:36 +00:00
Kernel/AHCI: Remove unnecessary AHCIPort class member
This commit is contained in:
parent
2e8330f78c
commit
557351724a
2 changed files with 0 additions and 2 deletions
|
@ -89,7 +89,6 @@ void AHCIPort::handle_interrupt()
|
||||||
}
|
}
|
||||||
if (m_interrupt_status.is_set(AHCI::PortInterruptFlag::PRC)) {
|
if (m_interrupt_status.is_set(AHCI::PortInterruptFlag::PRC)) {
|
||||||
clear_sata_error_register();
|
clear_sata_error_register();
|
||||||
m_wait_connect_for_completion = true;
|
|
||||||
}
|
}
|
||||||
if (m_interrupt_status.is_set(AHCI::PortInterruptFlag::INF)) {
|
if (m_interrupt_status.is_set(AHCI::PortInterruptFlag::INF)) {
|
||||||
// We need to defer the reset, because we can receive interrupts when
|
// We need to defer the reset, because we can receive interrupts when
|
||||||
|
|
|
@ -107,7 +107,6 @@ private:
|
||||||
Mutex m_lock { "AHCIPort" };
|
Mutex m_lock { "AHCIPort" };
|
||||||
|
|
||||||
mutable bool m_wait_for_completion { false };
|
mutable bool m_wait_for_completion { false };
|
||||||
bool m_wait_connect_for_completion { false };
|
|
||||||
|
|
||||||
NonnullRefPtrVector<Memory::PhysicalPage> m_dma_buffers;
|
NonnullRefPtrVector<Memory::PhysicalPage> m_dma_buffers;
|
||||||
NonnullRefPtrVector<Memory::PhysicalPage> m_command_table_pages;
|
NonnullRefPtrVector<Memory::PhysicalPage> m_command_table_pages;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue