mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-02 22:30:31 +00:00
PCI: Enable LogStream output for addresses
This commit is contained in:
parent
032ce1948e
commit
8639ee2640
Notes:
sideshowbarker
2024-07-19 08:49:11 +09:00
Author: https://github.com/supercomputer7
Commit: 8639ee2640
Pull-request: https://github.com/SerenityOS/serenity/pull/1385
Reviewed-by: https://github.com/awesomekling
3 changed files with 8 additions and 2 deletions
|
@ -27,6 +27,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <AK/Function.h>
|
||||
#include <AK/LogStream.h>
|
||||
#include <AK/Types.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
@ -129,6 +130,11 @@ namespace PCI {
|
|||
u8 m_function { 0 };
|
||||
};
|
||||
|
||||
inline const LogStream& operator<<(const LogStream& stream, const Address value)
|
||||
{
|
||||
return stream << "PCI [" << String::format("%w", value.seg()) << ":" << String::format("%b", value.bus()) << ":" << String::format("%b", value.slot()) << "." << String::format("%b", value.function()) << "]";
|
||||
}
|
||||
|
||||
struct ChangeableAddress : public Address {
|
||||
ChangeableAddress()
|
||||
: Address(0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue