1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:27:35 +00:00

Kernel: Clean up PCI::Device namespace formatting

This commit is contained in:
Ben Wiederhake 2021-09-11 15:39:11 +02:00 committed by Idan Horowitz
parent f9e0815c3b
commit de15a6a657

View file

@ -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;
}; };
}
} }