mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-27 04:37:22 +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
|
@ -83,7 +83,10 @@ struct ID {
|
|||
return vendor_id != other.vendor_id || device_id != other.device_id;
|
||||
}
|
||||
};
|
||||
|
||||
inline const LogStream& operator<<(const LogStream& stream, const ID value)
|
||||
{
|
||||
return stream << "(" << String::format("%w", value.vendor_id) << ":" << String::format("%w", value.device_id) << ")";
|
||||
}
|
||||
struct Address {
|
||||
public:
|
||||
Address() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue