summaryrefslogtreecommitdiffhomepage
path: root/dev/kernel/KernelKit/PCI
diff options
context:
space:
mode:
Diffstat (limited to 'dev/kernel/KernelKit/PCI')
-rw-r--r--dev/kernel/KernelKit/PCI/Device.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/dev/kernel/KernelKit/PCI/Device.h b/dev/kernel/KernelKit/PCI/Device.h
index 2c92ba4f..9b750e43 100644
--- a/dev/kernel/KernelKit/PCI/Device.h
+++ b/dev/kernel/KernelKit/PCI/Device.h
@@ -24,10 +24,9 @@ namespace Kernel::PCI
Device() = default;
public:
- explicit Device(UShort bus, UShort device, UShort function, UInt32 bar);
+ Device(UShort bus, UShort device, UShort function, UInt32 bar);
Device& operator=(const Device&) = default;
-
Device(const Device&) = default;
~Device();
@@ -43,14 +42,14 @@ namespace Kernel::PCI
template <typename T>
UInt Read(UInt bar)
{
- static_assert(sizeof(T) <= 4, "64-bit PCI addressing is unsupported");
+ static_assert(sizeof(T) <= sizeof(UInt32), "64-bit PCI addressing is unsupported");
return Read(bar, sizeof(T));
}
template <typename T>
void Write(UInt bar, UIntPtr data)
{
- static_assert(sizeof(T) <= 4, "64-bit PCI addressing is unsupported");
+ static_assert(sizeof(T) <= sizeof(UInt32), "64-bit PCI addressing is unsupported");
Write(bar, data, sizeof(T));
}