diff options
author | Liav A <liavalb@gmail.com> | 2020-04-10 19:51:35 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-11 10:02:31 +0200 |
commit | 688dd9ea66b83fcba6124ddf7d901e227599cfe8 (patch) | |
tree | f6f94b8b8ca128175ec94a1a81b801b2f12de2bd /Kernel/Devices | |
parent | e9df6189f41e0935adf518fffe3b755307caa3cb (diff) | |
download | serenity-688dd9ea66b83fcba6124ddf7d901e227599cfe8.zip |
Kernel: Simplify a message in PATAChannel::create()
Diffstat (limited to 'Kernel/Devices')
-rw-r--r-- | Kernel/Devices/PATAChannel.cpp | 2 |
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); |