mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 06:09:08 +00:00
Kernel: Simplify PCI messages on initialization
This commit is contained in:
parent
871d450b93
commit
caa7a6c2fb
Notes:
sideshowbarker
2024-07-19 07:46:34 +09:00
Author: https://github.com/supercomputer7
Commit: caa7a6c2fb
Pull-request: https://github.com/SerenityOS/serenity/pull/1715
2 changed files with 5 additions and 2 deletions
|
@ -60,7 +60,7 @@ void initialize()
|
|||
IOAccess::initialize();
|
||||
|
||||
enumerate_all([&](const Address& address, ID id) {
|
||||
klog() << "PCI: Device @ " << String::format("%w", address.seg()) << ":" << String::format("%b", address.bus()) << ":" << String::format("%b", address.slot()) << "." << String::format("%d", address.function()) << " [" << String::format("%w", id.vendor_id) << ":" << String::format("%w", id.device_id) << "]";
|
||||
klog() << address << " " << id;
|
||||
E1000NetworkAdapter::detect(address);
|
||||
RTL8139NetworkAdapter::detect(address);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue