diff options
author | Luke <luke.wilde@live.co.uk> | 2021-05-15 18:28:46 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-15 19:45:44 +0200 |
commit | 57277d8a5c1026dc66f876b3d93b26aa49141f74 (patch) | |
tree | c691d6d11108d91f96bdaf3f5eaf5d535a8078ca /Kernel | |
parent | 174fdddc2b2302c00f7afd6cf9992dfe76552a75 (diff) | |
download | serenity-57277d8a5c1026dc66f876b3d93b26aa49141f74.zip |
Kernel/AHCI: Fix "received" => "recovered" typo in communication error
The error is actually "Recovered communications error" instead of
"Received communications error".
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Storage/AHCIPort.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Storage/AHCIPort.cpp b/Kernel/Storage/AHCIPort.cpp index d8088bf21c..e03dee6add 100644 --- a/Kernel/Storage/AHCIPort.cpp +++ b/Kernel/Storage/AHCIPort.cpp @@ -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 { |