1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 06:37:43 +00:00

Kernel: Convert klog() => AK::Format in PCI

This commit is contained in:
Andreas Kling 2021-03-12 13:57:56 +01:00
parent df65c8f2eb
commit feda905c3f
4 changed files with 12 additions and 19 deletions

View file

@ -41,7 +41,7 @@ UNMAP_AFTER_INIT void IOAccess::initialize()
UNMAP_AFTER_INIT IOAccess::IOAccess()
{
klog() << "PCI: Using I/O instructions for PCI configuration space access";
dmesgln("PCI: Using I/O instructions for PCI configuration space access");
enumerate_hardware([&](const Address& address, ID id) {
m_physical_ids.append({ address, id, get_capabilities(address) });
});