Kernel/AHCI: Fix "received" => "recovered" typo in communication error

The error is actually "Recovered communications error" instead of
"Received communications error".
This commit is contained in:
Luke 2021-05-15 18:28:46 +01:00 committed by Andreas Kling
parent 174fdddc2b
commit 57277d8a5c
Notes: sideshowbarker 2024-07-18 18:05:35 +09:00

View File

@ -356,7 +356,7 @@ void AHCIPort::try_disambiguate_sata_error()
if (m_port_registers.serr & AHCI::SErr::ERR_T)
dmesgln("AHCI Port {}: - Transient data integrity error", representative_port_index());
if (m_port_registers.serr & AHCI::SErr::ERR_M)
dmesgln("AHCI Port {}: - Received communications error", representative_port_index());
dmesgln("AHCI Port {}: - Recovered communications error", representative_port_index());
if (m_port_registers.serr & AHCI::SErr::ERR_I)
dmesgln("AHCI Port {}: - Recovered data integrity error", representative_port_index());
} else {