summaryrefslogtreecommitdiff
path: root/Kernel/Devices
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2020-04-10 19:51:35 +0300
committerAndreas Kling <kling@serenityos.org>2020-04-11 10:02:31 +0200
commit688dd9ea66b83fcba6124ddf7d901e227599cfe8 (patch)
treef6f94b8b8ca128175ec94a1a81b801b2f12de2bd /Kernel/Devices
parente9df6189f41e0935adf518fffe3b755307caa3cb (diff)
downloadserenity-688dd9ea66b83fcba6124ddf7d901e227599cfe8.zip
Kernel: Simplify a message in PATAChannel::create()
Diffstat (limited to 'Kernel/Devices')
-rw-r--r--Kernel/Devices/PATAChannel.cpp2
1 files changed, 1 insertions, 1 deletions
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> 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<PATAChannel>(pci_address, type, force_pio);