From 57277d8a5c1026dc66f876b3d93b26aa49141f74 Mon Sep 17 00:00:00 2001 From: Luke Date: Sat, 15 May 2021 18:28:46 +0100 Subject: [PATCH] Kernel/AHCI: Fix "received" => "recovered" typo in communication error The error is actually "Recovered communications error" instead of "Received communications error". --- Kernel/Storage/AHCIPort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {