summaryrefslogtreecommitdiff
path: root/Kernel/Bus/PCI
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel/Bus/PCI')
-rw-r--r--Kernel/Bus/PCI/Device.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Kernel/Bus/PCI/Device.h b/Kernel/Bus/PCI/Device.h
index 5d827f1f49..2b58f58dac 100644
--- a/Kernel/Bus/PCI/Device.h
+++ b/Kernel/Bus/PCI/Device.h
@@ -10,7 +10,9 @@
#include <Kernel/Bus/PCI/Definitions.h>
namespace Kernel {
-class PCI::Device {
+namespace PCI {
+
+class Device {
public:
Address pci_address() const { return m_pci_address; };
@@ -33,4 +35,6 @@ protected:
private:
Address m_pci_address;
};
+
+}
}