mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 13:17:44 +00:00
Kernel: Clean up PCI::Device namespace formatting
This commit is contained in:
parent
f9e0815c3b
commit
de15a6a657
1 changed files with 5 additions and 1 deletions
|
@ -10,7 +10,9 @@
|
||||||
#include <Kernel/Bus/PCI/Definitions.h>
|
#include <Kernel/Bus/PCI/Definitions.h>
|
||||||
|
|
||||||
namespace Kernel {
|
namespace Kernel {
|
||||||
class PCI::Device {
|
namespace PCI {
|
||||||
|
|
||||||
|
class Device {
|
||||||
public:
|
public:
|
||||||
Address pci_address() const { return m_pci_address; };
|
Address pci_address() const { return m_pci_address; };
|
||||||
|
|
||||||
|
@ -33,4 +35,6 @@ protected:
|
||||||
private:
|
private:
|
||||||
Address m_pci_address;
|
Address m_pci_address;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue