mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:27:35 +00:00
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:
parent
174fdddc2b
commit
57277d8a5c
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue