diff options
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Bus/PCI/Definitions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Bus/PCI/Definitions.h b/Kernel/Bus/PCI/Definitions.h index 4d9447020d..c4a9d6e79b 100644 --- a/Kernel/Bus/PCI/Definitions.h +++ b/Kernel/Bus/PCI/Definitions.h @@ -184,7 +184,7 @@ public: return !(*this == other); } - u16 domain() const { return m_domain; } + u32 domain() const { return m_domain; } u8 bus() const { return m_bus; } u8 device() const { return m_device; } u8 function() const { return m_function; } |