From 688dd9ea66b83fcba6124ddf7d901e227599cfe8 Mon Sep 17 00:00:00 2001 From: Liav A Date: Fri, 10 Apr 2020 19:51:35 +0300 Subject: [PATCH] Kernel: Simplify a message in PATAChannel::create() --- Kernel/Devices/PATAChannel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Devices/PATAChannel.cpp b/Kernel/Devices/PATAChannel.cpp index 7d649ddf2b..b7ed53b87f 100644 --- a/Kernel/Devices/PATAChannel.cpp +++ b/Kernel/Devices/PATAChannel.cpp @@ -121,7 +121,7 @@ OwnPtr PATAChannel::create(ChannelType type, bool force_pio) PCI::enumerate_all([&](const PCI::Address& address, PCI::ID id) { if (PCI::get_class(address) == PCI_Mass_Storage_Class && PCI::get_subclass(address) == PCI_IDE_Controller_Subclass) { pci_address = address; - klog() << "PATAChannel: PATA Controller found! id=" << String::format("%w", id.vendor_id) << ":" << String::format("%w", id.device_id); + klog() << "PATAChannel: PATA Controller found, ID " << id; } }); return make(pci_address, type, force_pio);